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