a zip code crypto-currency system good for red ONLY

glob-util.d.ts 501B

1234567891011121314151617
  1. export declare function generateGlobTasks(patterns: string[], opts: any): GlobObject[];
  2. export declare function globAll(globs: string[]): Promise<GlobResult[]>;
  3. export declare function getBasePath(pattern: string): string;
  4. export interface GlobObject {
  5. pattern: string;
  6. opts: GlobOptions;
  7. base: string;
  8. }
  9. export interface GlobResult {
  10. absolutePath: string;
  11. base: string;
  12. }
  13. export interface GlobOptions {
  14. ignore: string[];
  15. }
  16. export declare const DEFAULT_IGNORE_ARRAY: string[];