14 lines
357 B
TypeScript
14 lines
357 B
TypeScript
import { Schema } from "effect"
|
|
|
|
import { withStatics } from "@opencode-ai/core/schema"
|
|
|
|
const projectIdSchema = Schema.String.pipe(Schema.brand("ProjectID"))
|
|
|
|
export type ProjectID = typeof projectIdSchema.Type
|
|
|
|
export const ProjectID = projectIdSchema.pipe(
|
|
withStatics((schema: typeof projectIdSchema) => ({
|
|
global: schema.make("global"),
|
|
})),
|
|
)
|