Back

Version 23

10/27/2023
export type TanaNode = {
nodeId?: string;
name: string;
description?: string;
children?: TanaNode[];
};

// export type DataTypes = "plain" | "boolean" | "date" | "url" | "reference"
export type APIPlainNode = {
name: string;
type?: "node" | undefined;
dataType?: "plain" | "url" | undefined;
description?: string | undefined;
supertags?: {
id: string;
};
};

export type APIField = {};
export type APINode = {};
export type APIPlainNode = {};

export let tanaTypes;
Updated: October 27, 2023