You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

4 lines
330 B

3 months ago
  1. import type { CompilerOptions, SFCDescriptor } from 'vue/compiler-sfc';
  2. export declare const descriptorCache: Map<string, SFCDescriptor>;
  3. export declare function setDescriptor(filename: string, entry: SFCDescriptor): void;
  4. export declare function getDescriptor(filename: string, compilerOptions?: CompilerOptions): SFCDescriptor;