/
Alex_Ural
/
opencode
Обзор
Документация
Войти
/
Alex_Ural
/
opencode
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
packages/core/src/config/tool-output.ts
9 строк
296 B
Dax
feat(core): add location-scoped config loading (#29625)
30 май 2026, 07:06
Не верифицирован
30 май 2026, 07:06
9583e08
Код
Авторство
О чём код?
export * as ConfigToolOutput from "./tool-output" import { Schema } from "effect" import { PositiveInt } from "../schema" export class Info extends Schema.Class<Info>("ConfigV2.ToolOutput")({ max_lines: PositiveInt.pipe(Schema.optional), max_bytes: PositiveInt.pipe(Schema.optional), }) {}