fluidtrends/papanache

View on GitHub
lib/web/config/rules/text.d.ts

Summary

Maintainability
A
0 mins
Test Coverage
declare const _default: (options?: any) => ({
    test: RegExp;
    use: {
        loader: string;
        options: {};
    };
} | {
    test: RegExp;
    use: ({
        loader: string;
        options?: undefined;
    } | {
        loader: string;
        options: {};
    })[];
} | {
    test: RegExp;
    use: ({
        loader: string;
        options?: undefined;
    } | {
        loader: string;
        options: {
            remarkPlugins: string[];
        };
    })[];
})[];
export default _default;