@im-ian/react-survey
Version:
2018~2019년에 제작했던 React 설문 모듈입니다. 아카이브 용도로 업로드 되었습니다.
21 lines (17 loc) • 432 B
text/typescript
import { IBlocks } from "./block";
export interface ISurveyEditor {
submitButtonOptions?: {
text: string;
visible: boolean;
};
defaultValue?: ISurveyResult;
onSubmit?: (result: ISurveyResult) => void;
onChange?: (result: ISurveyResult) => void;
useHead?: boolean;
}
export type ISurveyContent = IBlocks[];
export interface ISurveyResult {
title: string;
description?: string;
content: ISurveyContent;
}