Urara-Blog/node_modules/.pnpm-store/v3/files/4a/5f8008fe6e3863f0e63c44dc21702f87b800903a17e59a87514adc34e935181b48c5b996246e0d5a349bec820d808a6d505e1d27afd84e50b26052ba6a6d09
2022-08-14 01:14:53 +08:00

14 lines
575 B
Text

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;
};
export declare type SourceMapLoader = (file: string, ctx: LoaderContext) => SourceMapInput | null | undefined | void;
export declare type Options = {
excludeContent?: boolean;
decodedMappings?: boolean;
};