UNPKG

@idfy/sdk

Version:
17 lines (16 loc) 687 B
import { PadesSettings } from './PadesSettings'; export interface Packaging { /** * A list of signature formats that will be created and made available for download after the document is signed. * See our documentation for more information about these formats. The native package format is included automatically * (i.e. BankID SDO). */ signaturePackageFormats?: Packaging.SignaturePackageFormatsEnum[]; /** * PAdES settings that can be defined if the `pades` package format is selected. */ padesSettings?: PadesSettings; } export declare namespace Packaging { type SignaturePackageFormatsEnum = 'xades' | 'pades' | 'no_bankid_pades'; }