TenantAtlas/apps/platform/.pnpm-store/v10/files/e6/3ccde73aa78b34d511949f2d6126a262f45f178d7d52d12be847aa5649f71e78a975d8ac630c23e403f65720f5fc4fcc64bda3b6ce7cd61810f021501fa9fb
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

5 lines
198 B
Plaintext

declare function hasOwn<O, K extends PropertyKey>(o: O, p: K): p is K & keyof O;
declare function hasOwn<O, K extends PropertyKey, V = unknown>(o: O, p: K): o is O & Record<K, V>;
export = hasOwn;