Create type definition for 'nested-property' (#4004)

* Create type definition for 'nested-property'

* Follow lint
This commit is contained in:
Acid Chicken (硫酸鶏)
2019-02-01 21:08:49 +09:00
committed by GitHub
parent 27268fd6b7
commit 3b30ad5404
3 changed files with 21 additions and 2 deletions

19
src/@types/nested-property.d.ts vendored Normal file
View File

@ -0,0 +1,19 @@
declare module 'nested-property' {
interface IHasNestedPropertyOptions {
own?: boolean;
}
interface IIsInNestedPropertyOptions {
validPath?: boolean;
}
export function set<T>(object: T, property: string, value: any): T;
export function get(object: object, property: string): any;
export function has(object: object, property: string, options?: IHasNestedPropertyOptions): boolean;
export function hasOwn(object: object, property: string, options?: IHasNestedPropertyOptions): boolean;
export function isIn(object: object, property: string, objectInPath: object, options?: IIsInNestedPropertyOptions): boolean;
}