dist directory
This commit is contained in:
95
dist/components/FwbAvatar/FwbAvatar.vue.d.ts
vendored
Normal file
95
dist/components/FwbAvatar/FwbAvatar.vue.d.ts
vendored
Normal file
@@ -0,0 +1,95 @@
|
||||
import { type PropType } from 'vue';
|
||||
import type { AvatarSize, AvatarStatus, AvatarStatusPosition } from './types';
|
||||
declare const _default: __VLS_WithTemplateSlots<import("vue").DefineComponent<{
|
||||
alt: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
bordered: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
img: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
rounded: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
size: {
|
||||
type: PropType<AvatarSize>;
|
||||
default: string;
|
||||
};
|
||||
stacked: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
status: {
|
||||
type: PropType<AvatarStatus>;
|
||||
default: null;
|
||||
};
|
||||
statusPosition: {
|
||||
type: PropType<AvatarStatusPosition>;
|
||||
default: string;
|
||||
};
|
||||
initials: {
|
||||
type: StringConstructor;
|
||||
default: null;
|
||||
};
|
||||
}, {}, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
||||
alt: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
bordered: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
img: {
|
||||
type: StringConstructor;
|
||||
default: string;
|
||||
};
|
||||
rounded: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
size: {
|
||||
type: PropType<AvatarSize>;
|
||||
default: string;
|
||||
};
|
||||
stacked: {
|
||||
type: BooleanConstructor;
|
||||
default: boolean;
|
||||
};
|
||||
status: {
|
||||
type: PropType<AvatarStatus>;
|
||||
default: null;
|
||||
};
|
||||
statusPosition: {
|
||||
type: PropType<AvatarStatusPosition>;
|
||||
default: string;
|
||||
};
|
||||
initials: {
|
||||
type: StringConstructor;
|
||||
default: null;
|
||||
};
|
||||
}>>, {
|
||||
img: string;
|
||||
rounded: boolean;
|
||||
alt: string;
|
||||
bordered: boolean;
|
||||
size: AvatarSize;
|
||||
stacked: boolean;
|
||||
status: AvatarStatus;
|
||||
statusPosition: AvatarStatusPosition;
|
||||
initials: string;
|
||||
}, {}>, {
|
||||
placeholder?(_: {}): any;
|
||||
}>;
|
||||
export default _default;
|
||||
type __VLS_WithTemplateSlots<T, S> = T & {
|
||||
new (): {
|
||||
$slots: S;
|
||||
};
|
||||
};
|
||||
Reference in New Issue
Block a user