This commit is contained in:
2024-11-03 17:16:20 +01:00
commit fd6412d6f2
8090 changed files with 778406 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
export declare function resolve(root: string, filepath: string, ext: string): string;
export declare function readFile(url: string): Promise<string>;
export declare function readFileSync(url: string): string;
export declare function exists(filepath: string): Promise<boolean>;
export declare function existsSync(filepath: string): boolean;
export declare function dirname(filepath: string): string;
export declare const sep = "/";

View File

@@ -0,0 +1 @@
export {};

View File

@@ -0,0 +1,10 @@
/// <reference types="node" />
import { Emitter } from '../emitters';
export declare class StreamedEmitter implements Emitter {
buffer: string;
stream: NodeJS.ReadableStream;
constructor();
write: (html: any) => void;
error: (err: Error) => void;
end: () => void;
}

View File

@@ -0,0 +1 @@
export {};