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

8 lines
229 B
TypeScript

import { Schema as User } from './User';
import { Schema as System } from './System';
import { EntityShape } from 'oak-domain/lib/types/Entity';
export interface Schema extends EntityShape {
user: User;
system: System;
}