@bitblit/ratchet-misc
Version:
Ratchet miscellaneous tooling that requires smallish dependant libraries
9 lines (8 loc) • 385 B
TypeScript
export interface CreateList {
name: string;
folderId: number;
}
export declare function instanceOfCreateList(value: object): boolean;
export declare function CreateListFromJSON(json: any): CreateList;
export declare function CreateListFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateList;
export declare function CreateListToJSON(value?: CreateList | null): any;