22 lines
467 B
TypeScript
22 lines
467 B
TypeScript
// @signature.digital scope
|
|
import * as portablecontract from '@signature.digital/portablecontract';
|
|
|
|
export {
|
|
portablecontract,
|
|
}
|
|
|
|
// @design.estate scope
|
|
import * as deesCatalog from '@design.estate/dees-catalog';
|
|
|
|
export {
|
|
deesCatalog,
|
|
}
|
|
|
|
// third party
|
|
import signaturePadMod from 'signature_pad';
|
|
type signaturePadType = (typeof import('signature_pad'))['default'];
|
|
const signaturePad = signaturePadMod as any as signaturePadType;
|
|
|
|
export {
|
|
signaturePad,
|
|
} |