ant-design-vue/components/spin/index.ts

18 lines
426 B
TypeScript

import type { App, Plugin } from 'vue';
import Spin, { setDefaultIndicator } from './Spin';
export { SpinProps, getSpinProps } from './Spin';
Spin.setDefaultIndicator = setDefaultIndicator;
/* istanbul ignore next */
Spin.install = function (app: App) {
app.component(Spin.name, Spin);
return app;
};
export default Spin as typeof Spin &
Plugin & {
readonly setDefaultIndicator: typeof setDefaultIndicator;
};