Skip to content

GeneratedDoc

Document generation result containing file path, content, and relative path information.

Signature

typescript
interface GeneratedDoc {
  filePath: StandardizedFilePath;
  content: string;
  relativePath: string;
}

Parameters

  • filePathRequired · StandardizedFilePath

    Absolute file path where the document will be saved

  • contentRequired · string

    Generated Markdown content

  • relativePathRequired · string

    Relative path from the output directory

Released under the MIT License.