UNPKG

flowus-api-sdk

Version:

Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks

47 lines (46 loc) 1.25 kB
/** * FlowUs API * FlowUs Developer API * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { IconFileDetail } from './IconFileDetail'; /** * * @export * @interface IconFile */ export interface IconFile { /** * * @type {string} * @memberof IconFile */ type: IconFileTypeEnum; /** * * @type {IconFileDetail} * @memberof IconFile */ file: IconFileDetail; } /** * @export */ export declare const IconFileTypeEnum: { readonly File: "file"; }; export type IconFileTypeEnum = typeof IconFileTypeEnum[keyof typeof IconFileTypeEnum]; /** * Check if a given object implements the IconFile interface. */ export declare function instanceOfIconFile(value: object): value is IconFile; export declare function IconFileFromJSON(json: any): IconFile; export declare function IconFileFromJSONTyped(json: any, ignoreDiscriminator: boolean): IconFile; export declare function IconFileToJSON(json: any): IconFile; export declare function IconFileToJSONTyped(value?: IconFile | null, ignoreDiscriminator?: boolean): any;