To resolve a FunctionRef, a MessageFunction is called.

The name identifies one of the DefaultFunctions, or a function included in the MessageFormatOptions.functions.

interface FunctionRef {
    name: string;
    options?: Options;
    type: "function";
}

Properties

Properties

name: string
options?: Options
type: "function"