Initial commit: 11ty website with Fire/Frost branding

This commit is contained in:
The Trinity
2026-04-02 18:39:00 -05:00
commit 40b45dff2e
1646 changed files with 329080 additions and 0 deletions

View File

@@ -0,0 +1,2 @@
export declare function base64Encode(str: string): string;
export declare function base64Decode(str: string): string;

View File

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

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 {};