10 lines
372 B
TypeScript
10 lines
372 B
TypeScript
import { Schema } from "effect"
|
|
|
|
export const CatalogModelStatus = Schema.Literals(["alpha", "beta", "deprecated"])
|
|
export type CatalogModelStatus = typeof CatalogModelStatus.Type
|
|
|
|
export const ModelStatus = Schema.Literals(["alpha", "beta", "deprecated", "active"])
|
|
export type ModelStatus = typeof ModelStatus.Type
|
|
|
|
export * as ProviderModelStatus from "./model-status"
|