index.d.ts 318 B

1234567891011121314
  1. export {};
  2. declare module "vue" {
  3. export interface GlobalComponents {
  4. "cl-svg": (typeof import("./components/cl-svg/cl-svg.uvue"))["default"];
  5. }
  6. }
  7. declare module "@/uni_modules/cool-svg" {
  8. export class CoolSvg {
  9. constructor(element: UniNativeViewElement): void;
  10. load(src: string, color: string): void;
  11. }
  12. }