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

    Interface CodecFormatResolution

    Optional codec-provided details used by extensions!Formatter.resolve.

    Parsing support is inferred from the parser codec; omitted range strategy is inferred from FormatCodec.formatRange.

    interface CodecFormatResolution {
        implementation?: FormatImplementation;
        intl?: IntlFormatMetadata;
        locale?: string;
        parse?: boolean;
        rangeImplementation?: RangeImplementation;
    }
    Index
    implementation?: FormatImplementation

    Implementation responsible for presentation. Defaults to custom.

    Intl service and options used by the codec, when applicable.

    locale?: string

    Effective canonical locale, when the codec resolves one.

    parse?: boolean

    Whether this particular specification can be parsed.

    rangeImplementation?: RangeImplementation

    Range strategy for this particular specification.