@adyen/lume-vue3
Version:
Lume is a Vue data visualization component library, built with Typescript and D3.
6 lines • 367 B
TypeScript
type FormatFunctionArgs = [number | string, ...Array<number | string>];
type FormatFunction = (...args: FormatFunctionArgs) => number | string;
export type Format = string | FormatFunction;
export declare const useFormat: (format: Format) => (args_0: string | number, ...args_1: (string | number)[]) => string | number;
export {};
//# sourceMappingURL=format.d.ts.map