2024-08-09 14:03:22 +00:00

3 lines
97 B
TypeScript

declare function hasOwn<T extends {} = {}>(o: T, p: PropertyKey): p is keyof T;
export = hasOwn;