Home Reference Source Repository

Typedef

Static Public Summary
public

FileSet: *

Specification for building a set of test files.

public

An RxJS observable.

public

A result from the Bash search.

Static Public

public FileSet: * source

Specification for building a set of test files.

Properties:

NameTypeAttributeDescription
localFiles Array<string>

A list of files to create in the local path.

localDirectories Array<string>

A list of directories to create in the local path.

symLinks Array<Array<string>>

A list of symbolic links to create, consiting of a pair of paths, where the first item is the symbolic link source, and the second item is the destination of the symbolic link. This will be created in the local path.

rootFiles Array<string>

A list of files to create in the root path.

rootDirectories Array<string>

A list of directories to create in the root path.

rootPath string

the path that that is specified from the root (like "/tmp/glob-test")

localPath string

the path for local files (usually set within the project itself).

public Observable: * source

An RxJS observable.

public SearchResult: * source

A result from the Bash search.

Properties:

NameTypeAttributeDescription
pattern string

The original glob pattern that was used.

matches Array<string>

The list of file names that matched the glob pattern, relative to the base directory that was passed. The matches are sorted in lower-case alphabetical order.