mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 12:56:46 +08:00
10 lines
382 B
TypeScript
10 lines
382 B
TypeScript
// Type definitions for field 1.0.1
|
|
// Project: https://www.npmjs.com/package/field
|
|
// Definitions by: Leo Liang <https://github.com/aleung/DefinitelyTyped>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
|
|
declare module 'field' {
|
|
export function get(topObj: any, fields: string): any;
|
|
export function set(topObj: any, fields: string, value: any): any;
|
|
}
|