@tomino/dynamic-form-semantic-ui
Version:
Semantic UI form renderer based on dynamic form generation
20 lines (19 loc) • 642 B
TypeScript
import * as React from 'react';
import { FormComponentProps, FormComponent } from '@tomino/dynamic-form';
export declare class Signature extends React.Component<FormComponentProps> {
static contextType: React.Context<import("../context").ContextType>;
state: {
modalOpen: boolean;
modalRejectOpen: boolean;
reason: string;
password: string;
loading: boolean;
error: string;
fontReady: boolean;
};
handleOpen: () => void;
handleClose: () => void;
componentDidMount(): Promise<void>;
render(): JSX.Element;
}
export declare const SignatureView: FormComponent;