UNPKG

357 BTypeScriptView Raw
1import { IMagicImporterOptions } from './interfaces/IImporterOptions';
2declare const _default: (userOptions?: IMagicImporterOptions | undefined) => (url: string, prev: string) => {
3 contents: string;
4 file?: undefined;
5} | {
6 file: string | null;
7 contents: string;
8} | {
9 file: string;
10 contents?: undefined;
11} | null;
12export = _default;