// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
import type { FuncArgumentSpec } from "./FuncArgumentSpec";
import type { FuncSpecData } from "./FuncSpecData";
export type FuncSpec = {
name: string;
uniqueId: string;
data: FuncSpecData | null;
deleted: boolean;
isFromBuiltin: boolean | null;
arguments: Array<FuncArgumentSpec>;
};