Interface DefaultLsOptions

Represents the default options type for the ls* functions, used by defaultLsOptions.

interface DefaultLsOptions {
    encoding: "utf8";
    recursive: false;
    match: RegExp;
    exclude: undefined;
    rootDir: string | URL;
    absolute: false;
    basename: false;
}

Properties

encoding: "utf8"
recursive: false
match: RegExp
exclude: undefined
rootDir: string | URL
absolute: false
basename: false

Generated using TypeDoc v0.25.12