1 | import { IMagicImporterOptions } from './interfaces/IImporterOptions';
|
2 | declare 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;
|
12 | export = _default;
|