mirror of
https://github.com/anomalyco/opencode.git
synced 2026-08-04 10:19:53 +00:00
7 lines
211 B
TypeScript
7 lines
211 B
TypeScript
export * as ConfigWatcher from "./watcher"
|
|
|
|
import { Schema } from "effect"
|
|
|
|
export class Info extends Schema.Class<Info>("ConfigV2.Watcher")({
|
|
ignore: Schema.String.pipe(Schema.Array, Schema.optional),
|
|
}) {}
|