UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

11 lines (10 loc) 779 B
import type { CustomFieldSingleSelectDropDownConfigOptionsValue } from './CustomFieldSingleSelectDropDownConfigOptionsValue.js'; export interface CustomFieldMultiSelectDropDownConfig { options?: { [key: string]: CustomFieldSingleSelectDropDownConfigOptionsValue; }; } export declare function instanceOfCustomFieldMultiSelectDropDownConfig(value: object): boolean; export declare function CustomFieldMultiSelectDropDownConfigFromJSON(json: any): CustomFieldMultiSelectDropDownConfig; export declare function CustomFieldMultiSelectDropDownConfigFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldMultiSelectDropDownConfig; export declare function CustomFieldMultiSelectDropDownConfigToJSON(value?: CustomFieldMultiSelectDropDownConfig | null): any;