Interface PriceDirectiveContentLine

Type for a price directive content line, which can only be an inline comment at present.

interface PriceDirectiveContentLine {
    type: "priceDirectiveContentLine";
    value: {
        inlineComment: InlineComment;
    };
}

Properties

Properties

type: "priceDirectiveContentLine"
value: {
    inlineComment: InlineComment;
}

Type declaration

Generated using TypeDoc