UNPKG

483 BTypeScriptView Raw
1import type { ComponentPublicInstance } from 'vue';
2import type { SignatureProps } from './Signature';
3export type SignatureExpose = {
4 resize: () => void;
5 clear: () => void;
6 submit: () => void;
7};
8export type SignatureInstance = ComponentPublicInstance<SignatureProps, SignatureExpose>;
9export type SignatureThemeVars = {
10 signaturePadding?: string;
11 signatureContentHeight?: string;
12 signatureContentBackground?: string;
13 signatureContentBorder?: string;
14};