14 lines
557 B
TypeScript
14 lines
557 B
TypeScript
import { Datetime } from 'oak-domain/lib/types/DataType';
|
|
import { Schema as User } from './User';
|
|
import { EntityShape } from 'oak-domain/lib/types/Entity';
|
|
import { EntityDesc } from 'oak-domain/lib/types/EntityDesc';
|
|
import { Schema as OauthApplication } from './OauthApplications';
|
|
import { Schema as OauthTokens } from './OauthTokens';
|
|
export interface Schema extends EntityShape {
|
|
user: User;
|
|
application: OauthApplication;
|
|
authorizedAt: Datetime;
|
|
token: OauthTokens;
|
|
}
|
|
export declare const entityDesc: EntityDesc<Schema, '', '', {}>;
|