Interface CommodityDirectiveContentLine

Type for a 'raw' commodity directive item, which can be a format sudbdirective or a comment.

interface CommodityDirectiveContentLine {
    type: "commodityDirectiveContentLine";
    value: {
        formatSubdirective?: FormatSubdirective;
        inlineComment?: InlineComment;
    };
}

Properties

Properties

type: "commodityDirectiveContentLine"
value: {
    formatSubdirective?: FormatSubdirective;
    inlineComment?: InlineComment;
}

Type declaration

Generated using TypeDoc