bootstrap-vue-3
Version:
Early (but lovely) implementation of Vue 3, Bootstrap 5 and Typescript
84 lines (83 loc) • 2.01 kB
TypeScript
import type { Booleanish, ColorVariant, SpinnerType } from '../types';
declare const _sfc_main: import("vue").DefineComponent<{
label: {
type: StringConstructor;
required: false;
};
role: {
type: StringConstructor;
required: false;
default: string;
};
small: {
type: null;
required: false;
default: boolean;
};
tag: {
type: StringConstructor;
required: false;
default: string;
};
type: {
type: null;
required: false;
default: string;
};
variant: {
type: null;
required: false;
};
}, {
props: {
label?: string | undefined;
role: string;
small: Booleanish;
tag: string;
type: SpinnerType;
variant?: ColorVariant | undefined;
};
smallBoolean: import("vue").ComputedRef<boolean>;
classes: import("vue").ComputedRef<{
[x: string]: boolean;
'spinner-border': boolean;
'spinner-border-sm': boolean;
'spinner-grow': boolean;
'spinner-grow-sm': boolean;
}>;
}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").VNodeProps & import("vue").AllowedComponentProps & import("vue").ComponentCustomProps, Readonly<import("vue").ExtractPropTypes<{
label: {
type: StringConstructor;
required: false;
};
role: {
type: StringConstructor;
required: false;
default: string;
};
small: {
type: null;
required: false;
default: boolean;
};
tag: {
type: StringConstructor;
required: false;
default: string;
};
type: {
type: null;
required: false;
default: string;
};
variant: {
type: null;
required: false;
};
}>>, {
small: any;
type: any;
tag: string;
role: string;
}>;
export default _sfc_main;