@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
9 lines (8 loc) • 694 B
TypeScript
export interface CustomFieldSingleSelectDropDownConfigOptionsValue {
_id?: string;
name?: string;
}
export declare function instanceOfCustomFieldSingleSelectDropDownConfigOptionsValue(value: object): boolean;
export declare function CustomFieldSingleSelectDropDownConfigOptionsValueFromJSON(json: any): CustomFieldSingleSelectDropDownConfigOptionsValue;
export declare function CustomFieldSingleSelectDropDownConfigOptionsValueFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomFieldSingleSelectDropDownConfigOptionsValue;
export declare function CustomFieldSingleSelectDropDownConfigOptionsValueToJSON(value?: CustomFieldSingleSelectDropDownConfigOptionsValue | null): any;