UNPKG

458 BTypeScriptView Raw
1import { MLFile } from '@markuplint/file-resolver';
2export declare function resolveLintTargetFiles(options: {
3 /**
4 * Glob pattern
5 */
6 files?: string | string[];
7 /**
8 * Target source code of evaluation
9 */
10 sourceCodes?: string | string[];
11 /**
12 * File names when `sourceCodes`
13 */
14 names?: string | string[];
15 /**
16 * Workspace path when `sourceCodes`
17 */
18 workspace?: string;
19}): Promise<MLFile[]>;