@neutrium/formatter - v1.0.1
    Preparing search index...

    Interface FormatCapabilities

    Operations available for one specification on the instance that resolved it. Formatter resolutions always have parse: false; parser resolutions always have rendering, series, column, and range capabilities set to false.

    interface FormatCapabilities {
        columns: boolean;
        format: boolean;
        formatToParts: boolean;
        parse: boolean;
        range: boolean;
        rangeImplementation: RangeImplementation;
        series: boolean;
    }
    Index
    columns: boolean

    Whether aligned-column formatting is available.

    format: boolean

    Whether scalar formatting is available.

    formatToParts: boolean

    Whether semantic-parts formatting is available.

    parse: boolean

    Whether strict parsing is available for this specification.

    range: boolean

    Whether range formatting is available.

    rangeImplementation: RangeImplementation

    Strategy used for range formatting, or unsupported.

    series: boolean

    Whether series formatting is available.