Interface IgnoreLike

interface IgnoreLike {
    add?: ((ignore: string) => void);
    childrenIgnored?: ((p: Path) => boolean);
    ignored?: ((p: Path) => boolean);
}

Implemented by

Properties

add?: ((ignore: string) => void)
childrenIgnored?: ((p: Path) => boolean)
ignored?: ((p: Path) => boolean)