import { FluentType } from "https://deno.land/x/fluent@0.0.1/bundle/types.ts";
The FluentType
class is the base of Fluent's type system.
Fluent types wrap JavaScript values and store additional configuration for
them, which can then be used in the toString
method together with a proper
Intl
formatter.
Constructors
new
FluentType(value: T)Create a FluentType
instance.
Properties
value: T
The wrapped native value.