fix(core): update

This commit is contained in:
2023-11-27 18:30:44 +01:00
parent 548d57260d
commit 6c99b95ed7
10 changed files with 3913 additions and 59 deletions

22
ts_web/plugins.ts Normal file
View File

@@ -0,0 +1,22 @@
// @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,
}