uni-ticket-system/node_modules/licia/allKeys.d.ts

17 lines
382 B
TypeScript
Raw Normal View History

2023-12-05 02:11:10 +00:00
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;