Initial commit

This commit is contained in:
2024-11-03 17:41:45 +01:00
commit c1640c1754
8043 changed files with 775536 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 {};