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