DefinitelyTyped/types/field/index.d.ts
2017-03-24 14:27:52 -07:00

9 lines
364 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
export declare function get(topObj: any, fields: string): any;
export declare function set(topObj: any, fields: string, value: any): any;