TenantAtlas/apps/platform/.pnpm-store/v10/files/0f/a5483523adb954174c0b824acdc0e5e04d60eb88486f256cd2a272815cc75781f6770774c508d11eacfa153a948bf66c0f2d4113585919e367b9e4d872c0d6
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

8 lines
395 B
Plaintext

export declare const entityKind: unique symbol;
export declare const hasOwnEntityKind: unique symbol;
export interface DrizzleEntity {
[entityKind]: string;
}
export type DrizzleEntityClass<T> = ((abstract new (...args: any[]) => T) | (new (...args: any[]) => T)) & DrizzleEntity;
export declare function is<T extends DrizzleEntityClass<any>>(value: any, type: T): value is InstanceType<T>;