Type Alias GeneratedContent

GeneratedContent: Map<
    string,
    { content: string; documentPath: string; overwrite: boolean },
>

Represents the generated content for files.

The map keys are file paths (relative to the output directory), and the values are objects containing:

  • content: The generated content of the file.
  • overwrite: A flag indicating whether to overwrite existing files.
  • documentPath: The path to the source document from which the file was generated.