13 lines
485 B
TypeScript
13 lines
485 B
TypeScript
import { Boolean } from 'oak-domain/lib/types/DataType';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
import { Schema as Application } from './Application';
|
|
import { Schema as Passport } from './Passport';
|
|
export interface Schema extends EntityShape {
|
|
application: Application;
|
|
passport: Passport;
|
|
isDefault: Boolean;
|
|
allowPwd?: Boolean;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema>;
|