UNPKG

@carbon/ibm-products

Version:

Carbon for IBM Products

20 lines (19 loc) 692 B
/** * Copyright IBM Corp. 2025 * * This source code is licensed under the Apache-2.0 license found in the * LICENSE file in the root directory of this source tree. */ export declare enum BigNumbersSize { Default = "default", Large = "lg", XLarge = "xl" } export type BigNumbersSizeValues = `${BigNumbersSize}`; export declare enum Characters { Dash = "\u2013", Slash = "/" } export declare const DefaultLocale = "en-US"; export declare const formatValue: (locale: Intl.LocalesArgument, value: number | null | undefined, fractionDigits: number, truncate: boolean) => string | null | undefined; export declare const getIconSize: (size: BigNumbersSizeValues) => number;