UNPKG

@martinmilo/verve

Version:

TypeScript domain modeling library with field-level authorization, business rule validation, and context-aware access control

6 lines 226 B
type Constructor<T = {}> = new (...args: any[]) => T; export declare function WithAuthorization<TBase extends Constructor>(Base: TBase): { new (...args: any[]): {}; } & TBase; export {}; //# sourceMappingURL=mixin.d.ts.map