Chartbreaker
    Preparing search index...

    Type Alias GenericTableRowValue

    GenericTableRowValue:
        | { type: "text"; value: string }
        | {
            currency?: string;
            maxDecimals?: number;
            minDecimals?: number;
            type: "amount";
            value: number | string;
        }
        | { type: "amount"; value: Amount }
        | { type: "datetime"; value: number }
        | { type: "link"; value: GenericTableRowValueLink }