Interface LsTypesInterfaceReadonly

Interface defining the lsTypes enum with string literal keys representing different file types and their corresponding numeric values.

Since

0.1.0

interface LsTypesInterface {
    LS_A: 1;
    LS_D: 2;
    LS_F: 4;
}

Properties

Properties

LS_A: 1

Represents an option to include all file types.

Default Value

0b01 << 0b00 (0b01 | 0o01 | 0x01 | 1)

LS_D: 2

Represents an option to include only the directory type.

Default Value

0b01 << 0b01 (0b10 | 0o02 | 0x02 | 2)

LS_F: 4

Represents an option to include only the file type.

Default Value

0b01 << 0b10 (0b100 | 0o04 | 0x04 | 4)

Generated using TypeDoc v0.25.12