oak-general-business/es/entities/Session.d.ts

8 lines
245 B
TypeScript

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