/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/schema/src/vcs-event.ts
14 строк
332 B
Kit Langton
refactor(schema): tighten public contracts (#33771)
25 июн 2026, 20:10
Не верифицирован
25 июн 2026, 20:10
9e9d405
Код
Авторство
О чём код?
export * as VcsEvent from "./vcs-event" import { Schema } from "effect" import { optional } from "./schema" import { Event } from "./event" export const BranchUpdated = Event.define({ type: "vcs.branch.updated", schema: { branch: optional(Schema.String), }, }) export const Definitions = Event.inventory(BranchUpdated)