UNPKG

@saysimple/node-sdk

Version:

The official SaySimple Node SDK. Want to use our awesome customer conversations platform? Please visit: https://saysimple.com

6 lines (5 loc) 181 B
export interface AuthorizationInterface { getAuthorizationType(): "Bearer" | "Basic"; needsAuthorizationHeader(): boolean; getAccessToken(): Promise<string> | string; }