Represents information about a template, including its name, content, and optional file extension.

interface TemplateInfo {
    content: string;
    extn?: string;
    name: string;
}

Properties

Properties

content: string

The content of the template.

extn?: string

Optional. The file extension associated with the template.

name: string

The name of the template.