UNPKG

@types/reflect.ownkeys

Version:
14 lines (10 loc) 323 B
import implementation = require("./implementation"); type Implementation = typeof implementation; interface OwnKeys { <T extends object>(object: T): Array<keyof T>; getPolyfill(): Implementation; implementation: Implementation; shim(): Implementation; } declare const ownKeys: OwnKeys; export = ownKeys;