oak-general-business/lib/entities/Role.d.ts

7 lines
225 B
TypeScript

import { EntityShape } from 'oak-domain/lib/types/Entity';
import { String } from 'oak-domain/lib/types/DataType';
export interface Schema extends EntityShape {
name: String<64>;
}
export declare type Relation = 'owner';