/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/effect/app-node.ts
14 строк
450 B
James Long
refactor(core): rename app node modules (#34238)
27 июн 2026, 19:29
Не верифицирован
27 июн 2026, 19:29
a76c691
Код
Авторство
О чём код?
import { LayerNode } from "./layer-node" export const tags = LayerNode.tags({ location: ["global"], global: [], }) export type GlobalNode<A, E = never> = LayerNode.Node<A, E, (typeof tags.values)["global"]> export type LocationNode<A, E = never> = LayerNode.Node<A, E, (typeof tags.values)["location"]> export const makeGlobalNode = tags.make("global") export const makeLocationNode = tags.make("location") export * as Node from "./app-node"