UNPKG

@ark-ui/vue

Version:

A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.

18 lines (17 loc) 649 B
import { DefineComponent, ComponentOptionsMixin, PublicProps, ComponentProvideOptions } from 'vue'; export interface FormatByteProps { /** * The unit granularity to display */ unit?: 'bit' | 'byte'; /** * The unit display */ unitDisplay?: 'long' | 'short' | 'narrow'; /** * The byte size to format */ value: number; } declare const _default: DefineComponent<FormatByteProps, {}, {}, {}, {}, ComponentOptionsMixin, ComponentOptionsMixin, {}, string, PublicProps, Readonly<FormatByteProps> & Readonly<{}>, {}, {}, {}, {}, string, ComponentProvideOptions, false, {}, any>; export default _default;