@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
17 lines (16 loc) • 864 B
text/typescript
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue';
export interface FormatNumberProps {
/**
* The byte size to format
*/
value: number;
compactDisplay?: 'short' | 'long' | undefined;
notation?: 'standard' | 'scientific' | 'engineering' | 'compact' | undefined;
signDisplay?: 'auto' | 'never' | 'always' | 'exceptZero' | undefined;
unit?: string | undefined;
unitDisplay?: 'short' | 'long' | 'narrow' | undefined;
currencyDisplay?: string | undefined;
currencySign?: string | undefined;
}
declare const _default: DefineComponent<FormatNumberProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormatNumberProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>;
export default _default;