@types/reflect.ownkeys
Version:
TypeScript definitions for reflect.ownkeys
14 lines (10 loc) • 323 B
TypeScript
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;