@jfparent/formio-export
Version:
Formio Export Tools
18 lines (14 loc) • 368 B
JavaScript
import FileComponent from '../file';
class SignatureComponent extends FileComponent {
constructor (component, data, options) {
super(component, data, options);
if (this._value) {
this._value = [{
storage: 'base64',
type: 'image/png',
url: this._value
}];
}
}
}
export default SignatureComponent;