UNPKG

@awhere/api

Version:

The awesome aWhere API for JavaScript.

17 lines (16 loc) 698 B
import { IOAuthClientAuthorized } from '@awhere/interfaces'; import PrototypeBase from '../PrototypeBase'; declare class OAuthClientAuthorized extends PrototypeBase implements IOAuthClientAuthorized { static generateId(): string; private _client; get client(): IOAuthClientAuthorized['client']; set client(value: IOAuthClientAuthorized['client']); private _user; get user(): IOAuthClientAuthorized['user']; set user(value: IOAuthClientAuthorized['user']); private _scope; get scope(): IOAuthClientAuthorized['scope']; set scope(value: IOAuthClientAuthorized['scope']); constructor(props?: IOAuthClientAuthorized); } export default OAuthClientAuthorized;