@squidcloud/client
Version:
A typescript implementation of the Squid client
12 lines (11 loc) • 365 B
TypeScript
import { IntegrationId } from './public-types';
/**
* Holds authentication token for the specified integration.
* @category Auth
*/
export interface AuthData {
/** Authentication token for the specified integration. */
token: string | undefined;
/** Optional integration ID associated with the authentication. */
integrationId?: IntegrationId;
}