abc-charts
Version:
Widget render for using in 'ABC consulting' projects
12 lines (11 loc) • 390 B
TypeScript
import { BaseSetting } from "./BaseSetting";
import { SettingFunc } from "../types";
declare type DefaultType = string;
export interface StringSetting extends BaseSetting<DefaultType> {
readonly: boolean;
}
export declare function makeString(name: string, label: string, def?: DefaultType, data?: {
readonly?: boolean;
required?: boolean;
}): SettingFunc;
export {};