Files
Dorod-Sky/skyvern-ts/client/src/environments.ts

13 lines
409 B
TypeScript
Raw Normal View History

2025-10-23 20:14:59 -06:00
// This file was auto-generated by Fern from our API Definition.
export const SkyvernEnvironment = {
Production: "https://api.skyvern.com",
Staging: "https://api-staging.skyvern.com",
Development: "http://localhost:8000",
} as const;
export type SkyvernEnvironment =
| typeof SkyvernEnvironment.Production
| typeof SkyvernEnvironment.Staging
| typeof SkyvernEnvironment.Development;