9 lines
222 B
TypeScript
9 lines
222 B
TypeScript
// third party
|
|
import signaturePadMod from 'signature_pad';
|
|
type signaturePadType = (typeof import('signature_pad'))['default'];
|
|
const signaturePad = signaturePadMod as any as signaturePadType;
|
|
|
|
export {
|
|
signaturePad,
|
|
}
|