Skip to main content
The TypeScript SDK and docs are currently in beta. Report issues on GitHub.

Supported Types

string

const value: string = "<value>";

string[]

const value: string[] = [
  "<value 1>",
  "<value 2>",
];

number[]

const value: number[] = [
  3390.48,
  1336.21,
  9437.99,
];

number[][]

const value: number[][] = [
  [
    6206.15,
  ],
  [
    8419.72,
    5863.71,
  ],
  [
    2540.22,
  ],
];

operations.Input[]

const value: operations.Input[] = [
  {
    content: [],
  },
];