UNPKG

172 BTypeScriptView Raw
1import type { PropertyKey } from "../index";
2
3declare function HasOwnProperty<P extends PropertyKey>(O: object, P: P): O is { [K in P]: unknown };
4export = HasOwnProperty;