6 lines
195 B
TypeScript
6 lines
195 B
TypeScript
export * as SessionDelivery from "./session-delivery.js"
|
|
|
|
import { Schema } from "effect"
|
|
|
|
export const Delivery = Schema.Literals(["steer", "queue"])
|
|
export type Delivery = typeof Delivery.Type
|