integration-id.ts 326 B

1234567
  1. import { Schema } from "effect"
  2. export const IntegrationID = Schema.String.pipe(Schema.brand("Integration.ID"))
  3. export type IntegrationID = typeof IntegrationID.Type
  4. export const IntegrationMethodID = Schema.String.pipe(Schema.brand("Integration.MethodID"))
  5. export type IntegrationMethodID = typeof IntegrationMethodID.Type