UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

11 lines (10 loc) 787 B
import type { CustomFieldSingleSelectDropDownConfigOptionsValue } from './CustomFieldSingleSelectDropDownConfigOptionsValue.js'; export interface CustomFieldSingleSelectDropDownConfig { options?: { [key: string]: CustomFieldSingleSelectDropDownConfigOptionsValue; }; } export declare function instanceOfCustomFieldSingleSelectDropDownConfig(value: object): boolean; export declare function CustomFieldSingleSelectDropDownConfigFromJSON(json: any): CustomFieldSingleSelectDropDownConfig; export declare function CustomFieldSingleSelectDropDownConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldSingleSelectDropDownConfig; export declare function CustomFieldSingleSelectDropDownConfigToJSON(value?: CustomFieldSingleSelectDropDownConfig | null): any;