UNPKG

@bitblit/ratchet-misc

Version:

Ratchet miscellaneous tooling that requires smallish dependant libraries

9 lines (8 loc) 783 B
import type { CustomFieldSingleSelectDropDownContentSelectedOptions } from './CustomFieldSingleSelectDropDownContentSelectedOptions.js'; export interface CustomFieldSingleSelectDropDownContent { selectedOptions?: CustomFieldSingleSelectDropDownContentSelectedOptions; } export declare function instanceOfCustomFieldSingleSelectDropDownContent(value: object): boolean; export declare function CustomFieldSingleSelectDropDownContentFromJSON(json: any): CustomFieldSingleSelectDropDownContent; export declare function CustomFieldSingleSelectDropDownContentFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldSingleSelectDropDownContent; export declare function CustomFieldSingleSelectDropDownContentToJSON(value?: CustomFieldSingleSelectDropDownContent | null): any;