@ark-ui/vue
Version:
A collection of unstyled, accessible UI components for Vue, utilizing state machines for seamless interaction.
8 lines (7 loc) • 303 B
TypeScript
import { ComputedRef, MaybeRef } from 'vue';
export interface UseCollatorProps extends Intl.CollatorOptions {
locale?: string;
}
export interface UseCollatorReturn extends ComputedRef<Intl.Collator> {
}
export declare function useCollator(propsOrFn?: MaybeRef<UseCollatorProps>): UseCollatorReturn;