an extension of LeftoverArtifacts, with additional meta data for the user to examine.

interface TemporaryFiles {
    cleanup: (() => Promise<void>);
    dir: string;
    files: string[];
}

Hierarchy (view full)

Properties

Properties

cleanup: (() => Promise<void>)
dir: string

the root directory of where the temporary files exist

files: string[]

the temporary file paths, relative to the root directory, which shall be deleted post operation.