This commit is contained in:
16
node_modules/licia/allKeys.d.ts
generated
vendored
Normal file
16
node_modules/licia/allKeys.d.ts
generated
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
declare namespace allKeys {
|
||||
interface IOptions {
|
||||
prototype?: boolean;
|
||||
unenumerable?: boolean;
|
||||
}
|
||||
}
|
||||
declare function allKeys(
|
||||
obj: any,
|
||||
options: { symbol: true } & allKeys.IOptions
|
||||
): Array<string | Symbol>;
|
||||
declare function allKeys(
|
||||
obj: any,
|
||||
options?: ({ symbol: false } & allKeys.IOptions) | allKeys.IOptions
|
||||
): string[];
|
||||
|
||||
export = allKeys;
|
||||
Reference in New Issue
Block a user