@nextcloud/vue
Version:
Nextcloud vue components
23 lines (22 loc) • 855 B
TypeScript
type __VLS_Props = {
/**
* The appearance of the loading icon.
* 'auto' adjusts to the Nextcloud color scheme,
* 'light' and 'dark' are static.
*/
appearance?: 'auto' | 'light' | 'dark';
/**
* Specify what is loading (the accessible name) if this is not purely for decoration.
*/
name?: string;
/**
* Specify the size of the loading icon.
*/
size?: number;
};
declare const _default: import('vue').DefineComponent<__VLS_Props, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<__VLS_Props> & Readonly<{}>, {
size: number;
name: string;
appearance: "auto" | "light" | "dark";
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, HTMLSpanElement>;
export default _default;