UNPKG

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) 846 B
/** * 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 { ParentBlockId } from './ParentBlockId'; import type { ParentDatabaseId } from './ParentDatabaseId'; import type { ParentPageId } from './ParentPageId'; /** * @type Parent * * @export */ export type Parent = ParentBlockId | ParentDatabaseId | ParentPageId; export declare function ParentFromJSON(json: any): Parent; export declare function ParentFromJSONTyped(json: any, ignoreDiscriminator: boolean): Parent; export declare function ParentToJSON(json: any): any; export declare function ParentToJSONTyped(value?: Parent | null, ignoreDiscriminator?: boolean): any;