Interface FormattingInfo

Result of the resolveFRegistration metadata of a formatter. The resolver checks for this metadata on Formatter instances.

interface FormattingInfo {
    align?: ColumnAlign;
    formatterId: string;
    formatterOptions?: FormatterOptions;
    renderType?: "text" | "mail" | "link";
}

Properties

align?: ColumnAlign

Side effect. Allows control of column alignment.

formatterId: string

the id of a formatter to trigger

formatterOptions?: FormatterOptions

resolved formatting options.

renderType?: "text" | "mail" | "link"

Side effect. Allows the control of the column render type.

Generated using TypeDoc