@playform/maintain - v0.1.8
    Preparing search index...

    Variable search

    search: (Search: Set<string>) => Promise<Map<any, any>>

    The function Directory takes a set of file globs, walks through the directories until it finds a Git repository, and returns a map where the keys are the directories and the values are sets of globs associated with each directory.

    Type declaration

      • (Search: Set<string>): Promise<Map<any, any>>
      • Parameters

        • Search: Set<string>

          is a Set of strings representing file globs. A file glob is a pattern used to match file paths. For example, "*.js" would match all JavaScript files in a directory. The Search parameter is a set of these file globs that will be used to search for files in paths and the values are sets of glob patterns associated with each directory.

        Returns Promise<Map<any, any>>