10 lines
344 B
TypeScript
10 lines
344 B
TypeScript
import { Schema as User } from './User';
|
|
import { Schema as System } from './System';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
export interface Schema extends EntityShape {
|
|
user: User;
|
|
system: System;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|