import { type AiService } from '@dxos/ai'; import { type Credential, type Operation, type Trace } from '@dxos/compute'; import { type Database, type Feed } from '@dxos/echo'; import { type FunctionInvocationService } from './services'; /** * Services that are available to invoked functions. * @deprecated */ export type FunctionServices = AiService.AiService | Credential.CredentialsService | Database.Service | Feed.FeedService | Trace.TraceService | FunctionInvocationService | Operation.Service; //# sourceMappingURL=sdk.d.ts.map