初始化项目,添加 favicon.ico、screenshot.png 等静态资源文件,以及 Vue、TailwindCSS 等依赖项。配置了 Vite 和 PostCSS,并生成了基本的项目结构。
14 lines
665 B
TypeScript
14 lines
665 B
TypeScript
/// <reference types="node" />
|
|
import * as fs from 'fs';
|
|
import type { ErrnoException } from '../types';
|
|
export declare type StatAsynchronousMethod = (path: string, callback: (error: ErrnoException | null, stats: fs.Stats) => void) => void;
|
|
export declare type StatSynchronousMethod = (path: string) => fs.Stats;
|
|
export interface FileSystemAdapter {
|
|
lstat: StatAsynchronousMethod;
|
|
stat: StatAsynchronousMethod;
|
|
lstatSync: StatSynchronousMethod;
|
|
statSync: StatSynchronousMethod;
|
|
}
|
|
export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter;
|
|
export declare function createFileSystemAdapter(fsMethods?: Partial<FileSystemAdapter>): FileSystemAdapter;
|