flowus-api-sdk
Version:
Official TypeScript/JavaScript SDK for FlowUs API - Create, manage, and interact with FlowUs pages, databases, and blocks
25 lines (24 loc) • 792 B
TypeScript
/**
* 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 { IconEmoji } from './IconEmoji';
import type { IconExternal } from './IconExternal';
import type { IconFile } from './IconFile';
/**
* @type Icon
*
* @export
*/
export type Icon = IconEmoji | IconExternal | IconFile;
export declare function IconFromJSON(json: any): Icon;
export declare function IconFromJSONTyped(json: any, ignoreDiscriminator: boolean): Icon;
export declare function IconToJSON(json: any): any;
export declare function IconToJSONTyped(value?: Icon | null, ignoreDiscriminator?: boolean): any;