版博士V2.0程序
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.

пре 1 година
12345678910111213141516
  1. import { MagicStringBase } from 'magic-string-ast';
  2. import { FilterPattern } from '@rollup/pluginutils';
  3. export { AttachedScope, attachScopes, normalizePath } from '@rollup/pluginutils';
  4. declare function getTransformResult(s: MagicStringBase | undefined, id: string): {
  5. code: string;
  6. map: any;
  7. } | undefined;
  8. interface BaseOptions {
  9. include?: FilterPattern;
  10. exclude?: FilterPattern;
  11. version?: 2 | 3;
  12. }
  13. declare function createFilter(options: BaseOptions): (id: unknown) => boolean;
  14. export { BaseOptions, createFilter, getTransformResult };