comic-plus
Version:
<p align="center"> <img width="200px" src="./logo.png"/> </p>
58 lines (56 loc) • 1.77 kB
TypeScript
declare function __VLS_template(): {
template?(_: {}): any;
default?(_: {
[x: string]: unknown;
}): any;
};
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
readonly rows: {
readonly type: NumberConstructor;
readonly default: 4;
};
readonly animated: BooleanConstructor;
readonly loading: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly count: {
readonly type: NumberConstructor;
readonly default: 1;
};
readonly throttle: {
readonly type: NumberConstructor;
readonly default: 0;
};
}>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
readonly rows: {
readonly type: NumberConstructor;
readonly default: 4;
};
readonly animated: BooleanConstructor;
readonly loading: {
readonly type: BooleanConstructor;
readonly default: true;
};
readonly count: {
readonly type: NumberConstructor;
readonly default: 1;
};
readonly throttle: {
readonly type: NumberConstructor;
readonly default: 0;
};
}>> & Readonly<{}>, {
readonly count: number;
readonly loading: boolean;
readonly animated: boolean;
readonly rows: number;
readonly throttle: number;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
export default _default;
type __VLS_WithTemplateSlots<T, S> = T & {
new (): {
$slots: S;
};
};