appCss.d.ts 232 B

12345678
  1. import type { Plugin } from 'vite';
  2. declare module '@vue/compiler-sfc' {
  3. interface SFCDescriptor {
  4. id: string;
  5. }
  6. }
  7. export declare const APP_CSS_JS = "./app.css.js";
  8. export declare function uniAppCssPlugin(): Plugin;