oak-memory-tree-store/test/entities/Role.ts

8 lines
218 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 type Relation = 'owner';