signicat-client-ts
Version:
Community TypeScript client for Signicat Authentication REST API with automatic token management
21 lines (20 loc) • 536 B
TypeScript
/**
* Specifies the different urls to callback to.
*/
export type CallbackUrls = {
/**
* Specifies the URL to redirect in case of success.
* If it is not a sandbox request needs to be https.
*/
success: string;
/**
* Specifies the URL to redirect in case of abortion.
* If it is not a sandbox request needs to be https.
*/
abort: string;
/**
* Specifies the URL to redirect in case of error.
* If it is not a sandbox request needs to be https.
*/
error: string;
};