mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-23 02:36:57 -04:00
8 lines
326 B
TypeScript
8 lines
326 B
TypeScript
import { Schema } from "effect"
|
|
|
|
export const IntegrationID = Schema.String.pipe(Schema.brand("Integration.ID"))
|
|
export type IntegrationID = typeof IntegrationID.Type
|
|
|
|
export const IntegrationMethodID = Schema.String.pipe(Schema.brand("Integration.MethodID"))
|
|
export type IntegrationMethodID = typeof IntegrationMethodID.Type
|