@selfcommunity/types
Version:
Types to integrate a community created with SelfCommunity.
26 lines (25 loc) • 382 B
TypeScript
/**
* Interface SCAuthTokenType
*/
export interface SCAuthTokenType {
/**
* Access token.
*/
accessToken: string;
/**
* Refresh token.
*/
refreshToken?: string;
/**
* Token Type.
*/
tokenType?: string;
/**
* Expire in.
*/
expiresIn?: number;
/**
* Token scopes;
*/
scope?: Array<string>;
}