6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
import { IGlobOptions } from './types/options';
|
|
/**
|
|
* Main glob implementation
|
|
*/
|
|
export declare function globSync(fs: any, pattern: string, options?: IGlobOptions): string[];
|