/** `GET /v1/files/peek?path=` result — the UTF-8 contents of an absolute * host path, truncated to a byte cap (the panel shows a partial-content notice * when `truncated` is set). */ export interface FilePeekDTO { /** The absolute path read (echoes the request). */ path: string; /** UTF-8 file contents (a prefix when `truncated`). */ content: string; /** True when the file exceeded the read cap and `content` is a prefix. */ truncated: boolean; }