7 lines
209 B
TypeScript
7 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),
|
|
}) {}
|