import { ArcadeApiFunction, ArcadeApiItem, ArcadeSchemaItemBase } from './arcade'; import { SqlApiFunction, SqlApiItem, SqlSchemaItemBase } from './sql'; /** * */ export type { ArcadeApiItem, ArcadeApiConstant } from './arcade'; export type { SqlApiItem } from './sql'; /** * Union of API items that can be used in any sdk schema */ export type SchemaApiItem = ArcadeApiItem | SqlApiItem; /** * Union of API functions that can be used in any sdk schema */ export type SchemaApiFunction = ArcadeApiFunction | SqlApiFunction; /** * Union of schema items that can be used in any sdk schema */ export type SchemaItemBase = ArcadeSchemaItemBase | SqlSchemaItemBase; export type * from './base'; export type * from './common';