@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
9 lines (8 loc) • 415 B
TypeScript
export interface ComponentItems {
type?: string;
text?: string;
}
export declare function instanceOfComponentItems(value: object): boolean;
export declare function ComponentItemsFromJSON(json: any): ComponentItems;
export declare function ComponentItemsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ComponentItems;
export declare function ComponentItemsToJSON(value?: ComponentItems | null): any;