neverland 2b3c1baa0b
types: define global components for volar (#10136)
* types: define global components for volar

* chore: remove comment
2021-12-31 18:06:45 +08:00

13 lines
304 B
TypeScript

import { withInstall } from '../utils';
import _Circle from './Circle';
export const Circle = withInstall(_Circle);
export default Circle;
export type { CircleProps, CircleStartPosition } from './Circle';
declare module 'vue' {
export interface GlobalComponents {
VanCircle: typeof Circle;
}
}