mirror of
https://github.com/pure-admin/vue-pure-admin.git
synced 2025-12-15 14:50:29 +08:00
docs:更新文档
This commit is contained in:
20
node_modules/vite/dist/node/server/serverPluginVue.d.ts
generated
vendored
Normal file
20
node_modules/vite/dist/node/server/serverPluginVue.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import { ServerPlugin } from '.';
|
||||
import { SFCDescriptor, SFCStyleCompileResults, BindingMetadata } from '@vue/compiler-sfc';
|
||||
import LRUCache from 'lru-cache';
|
||||
import { SourceMap } from './serverPluginSourceMap';
|
||||
export declare const srcImportMap: Map<any, any>;
|
||||
interface CacheEntry {
|
||||
descriptor?: SFCDescriptor;
|
||||
template?: ResultWithMap;
|
||||
script?: ResultWithMap;
|
||||
styles: SFCStyleCompileResults[];
|
||||
customs: string[];
|
||||
}
|
||||
interface ResultWithMap {
|
||||
code: string;
|
||||
map: SourceMap | null | undefined;
|
||||
bindings?: BindingMetadata;
|
||||
}
|
||||
export declare const vueCache: LRUCache<string, CacheEntry>;
|
||||
export declare const vuePlugin: ServerPlugin;
|
||||
export {};
|
||||
Reference in New Issue
Block a user