UNPKG

@minimaltech/node-infra

Version:

Minimal Technology NodeJS Infrastructure - Loopback 4 Framework

13 lines (12 loc) 365 B
import { BaseTzEntity } from '../../../base/base.model'; import { AnyObject, IdType } from '../../../common'; export declare class OAuth2Token extends BaseTzEntity { token: string; type: string; status: string; scopes: Array<string>; clientId: IdType; userId: IdType; details?: AnyObject; constructor(data?: Partial<OAuth2Token>); }