fx-form-widget
Version:
17 lines (16 loc) • 570 B
TypeScript
export interface Response {
code?: string;
success: boolean;
message?: string;
data?: any;
}
interface Subform {
downLoadImportTemplate(formId: string, subformWid: string): Promise<Response>;
downLoadSubformData(formId: string, subformWid: string): Promise<Response>;
}
declare class SubformStore implements Subform {
downLoadImportTemplate(formId: string, subformWid: string): Promise<Response>;
downLoadSubformData(formId: string, subformWid: string): Promise<Response>;
}
declare const _default: SubformStore;
export default _default;