/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/plugin/src/v2/effect/event.ts
10 строк
287 B
Dax
feat(plugin): add v2 effect host (#33111)
21 июн 2026, 15:05
Не верифицирован
21 июн 2026, 15:05
c780d7c
Код
Авторство
О чём код?
import type { Event as SDKEvent } from "@opencode-ai/sdk/v2/types" import type { Stream } from "effect" export type EventMap = { [Item in SDKEvent as Item["type"]]: Item } export interface Event { subscribe<Type extends keyof EventMap>(type: Type): Stream.Stream<EventMap[Type]> }