1 | /// <reference types="node" />
|
2 | import type * as scandir from '@nodelib/fs.scandir';
|
3 | export type Entry = scandir.Entry;
|
4 | export type ErrnoException = NodeJS.ErrnoException;
|
5 | export interface QueueItem {
|
6 | directory: string;
|
7 | base?: string;
|
8 | }
|
9 | export type EntryEventCallback = (entry: Entry) => void;
|
10 | export type ErrorEventCallback = (error: ErrnoException) => void;
|
11 | export type EndEventCallback = () => void;
|