geenee-spell
Version:
regenerates project code based upon settings and a template
25 lines (24 loc) • 615 B
TypeScript
export declare const types: {
LIST: string;
SET: string;
BOOLEAN: string;
STRING: string;
TOP_LEVEL: string;
};
export declare const DONE = "done";
export declare const ADD_NEW = "addNew";
export declare const DELETE = "delete";
export declare const TO_EDIT = "toEdit";
export declare const EDIT_OPTIONS = "editOptions";
export declare const EDIT = "edit";
export interface AnswersForStaticInstanceSpec {
'toEdit': AnswerValue;
'editOptions': any;
'edit': any;
}
export interface AnswerValue {
name: string;
typeOfValue: string;
required?: boolean;
index?: number;
}