UNPKG

@ckeditor/ckeditor5-dev-utils

Version:
20 lines (19 loc) 475 B
/** * @license Copyright (c) 2003-2025, CKSource Holding sp. z o.o. All rights reserved. * For licensing, see LICENSE.md. */ type CoverageLoaderConfig = { test: RegExp; use: Array<{ loader: string; options: { plugins: Array<string>; }; }>; include: Array<RegExp>; exclude: Array<RegExp>; }; export default function getCoverageLoader({ files }: { files: Array<Array<string>>; }): CoverageLoaderConfig; export {};