dots.d.ts 204 B

123456789
  1. export default Dots;
  2. declare function Dots(_: any, { attrs }: {
  3. attrs: any;
  4. }): import("vue").VNode<any, any, {
  5. [key: string]: any;
  6. }>;
  7. declare namespace Dots {
  8. const inheritAttrs: boolean;
  9. }