Interface YearDirective

Type for a 'raw' year directive

interface YearDirective {
    type: "yearDirective";
    value: {
        comments?: InlineComment;
        contentLines: YearDirectiveContentLine[];
        year: string;
    };
}

Properties

Properties

type: "yearDirective"
value: {
    comments?: InlineComment;
    contentLines: YearDirectiveContentLine[];
    year: string;
}

Type declaration

Generated using TypeDoc