abowire
Version:
This is the official **Abowire Javascript SDK**, which makes it easy to connect to the Abowire **GraphQL API** and includes all the required dependencies you need.
12 lines (11 loc) • 321 B
TypeScript
export declare const storeCredentials: (credentials: {
token?: string;
refreshToken?: string;
idToken?: string;
}) => void;
export declare const getStoredCredentials: () => {
token: string;
refreshToken: string;
idToken: string;
} | void;
export declare const removeStoredCredentials: () => void;