@idfy/sdk
Version:
Node.js SDK for Idfy REST API
13 lines (12 loc) • 344 B
TypeScript
import { DialogAfter } from './DialogAfter';
import { DialogBefore } from './DialogBefore';
export interface Dialogs {
/**
* A dialog that will be presented before the document is signed.
*/
before?: DialogBefore;
/**
* A dialog that will be presented after the document is signed.
*/
after?: DialogAfter;
}