med-notes/.pnpm-store/v10/files/7e/ec797b4d9f65d46289753729691ead7e3ac49476387d7448b232a18d7ec42b7590794c0bd9674c881a79027b287c102ee6faa78afdba27e3f72b894d5d5d21
2025-05-09 05:30:08 +02:00

16 lines
608 B
Plaintext

import type { SourceMapInput } from '@jridgewell/trace-mapping';
export type { SourceMapSegment, DecodedSourceMap, EncodedSourceMap, } from '@jridgewell/trace-mapping';
export type { SourceMapInput };
export declare type LoaderContext = {
readonly importer: string;
readonly depth: number;
source: string;
content: string | null | undefined;
ignore: boolean | undefined;
};
export declare type SourceMapLoader = (file: string, ctx: LoaderContext) => SourceMapInput | null | undefined | void;
export declare type Options = {
excludeContent?: boolean;
decodedMappings?: boolean;
};