mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-17 12:56:41 +02:00
8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
export * as ConfigWatcher from "./watcher"
|
|
|
|
import { Schema } from "effect"
|
|
|
|
export class Info extends Schema.Class<Info>("Config.Watcher")({
|
|
ignore: Schema.String.pipe(Schema.Array, Schema.optional),
|
|
}) {}
|