index.d.ts 106 B

123
  1. declare function ownKeys<T extends Record<PropertyKey, V>, V>(object: T): (keyof T)[];
  2. export = ownKeys;