ec797b4d9f65d46289753729691ead7e3ac49476387d7448b232a18d7ec42b7590794c0bd9674c881a79027b287c102ee6faa78afdba27e3f72b894d5d5d21 608 B

123456789101112131415
  1. import type { SourceMapInput } from '@jridgewell/trace-mapping';
  2. export type { SourceMapSegment, DecodedSourceMap, EncodedSourceMap, } from '@jridgewell/trace-mapping';
  3. export type { SourceMapInput };
  4. export declare type LoaderContext = {
  5. readonly importer: string;
  6. readonly depth: number;
  7. source: string;
  8. content: string | null | undefined;
  9. ignore: boolean | undefined;
  10. };
  11. export declare type SourceMapLoader = (file: string, ctx: LoaderContext) => SourceMapInput | null | undefined | void;
  12. export declare type Options = {
  13. excludeContent?: boolean;
  14. decodedMappings?: boolean;
  15. };