Fix type declaretion

This commit is contained in:
syuilo 2019-02-03 20:32:46 +09:00
parent b97f788d71
commit df54da9510
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -1,3 +1,5 @@
type Obj = { [key: string]: any };
declare module 'nested-property' {
interface IHasNestedPropertyOptions {
own?: boolean;
@ -9,11 +11,11 @@ declare module 'nested-property' {
export function set<T>(object: T, property: string, value: any): T;
export function get(object: object, property: string): any;
export function get(object: Obj, property: string): any;
export function has(object: object, property: string, options?: IHasNestedPropertyOptions): boolean;
export function has(object: Obj, property: string, options?: IHasNestedPropertyOptions): boolean;
export function hasOwn(object: object, property: string, options?: IHasNestedPropertyOptions): boolean;
export function hasOwn(object: Obj, property: string, options?: IHasNestedPropertyOptions): boolean;
export function isIn(object: object, property: string, objectInPath: object, options?: IIsInNestedPropertyOptions): boolean;
export function isIn(object: Obj, property: string, objectInPath: Obj, options?: IIsInNestedPropertyOptions): boolean;
}