mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-03 03:29:30 +08:00
8 lines
251 B
Text
8 lines
251 B
Text
/// <reference types="node" />
|
|
import type * as scandir from '@nodelib/fs.scandir';
|
|
export declare type Entry = scandir.Entry;
|
|
export declare type Errno = NodeJS.ErrnoException;
|
|
export interface QueueItem {
|
|
directory: string;
|
|
base?: string;
|
|
}
|