UNPKG

abc-charts

Version:

Widget render for using in 'ABC consulting' projects

8 lines (7 loc) 298 B
import { SettingFunc } from "../types"; import { BaseSetting } from "./BaseSetting"; declare type DefaultType = string; export interface IconSetting extends BaseSetting<DefaultType> { } export declare function makeIcon(name: string, label: string, def: DefaultType): SettingFunc; export {};