Type Alias Matches<O>

Matches<O>: O extends GWOFileTypesTrue
    ? Set<Path>
    : O extends GWOFileTypesFalse
        ? Set<string>
        : O extends GWOFileTypesUnset
            ? Set<string>
            : Set<Path | string>

Type Parameters