UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

9 lines (8 loc) 772 B
import type { CustomFieldMultiSelectDropDownContentSelectedOptions } from './CustomFieldMultiSelectDropDownContentSelectedOptions.js'; export interface CustomFieldMultiSelectDropDownContent { selectedOptions?: CustomFieldMultiSelectDropDownContentSelectedOptions; } export declare function instanceOfCustomFieldMultiSelectDropDownContent(value: object): boolean; export declare function CustomFieldMultiSelectDropDownContentFromJSON(json: any): CustomFieldMultiSelectDropDownContent; export declare function CustomFieldMultiSelectDropDownContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldMultiSelectDropDownContent; export declare function CustomFieldMultiSelectDropDownContentToJSON(value?: CustomFieldMultiSelectDropDownContent | null): any;