- Complete React app with 7 developer tools - JSON Tool with visual structured editor - Serialize Tool with visual structured editor - URL, Base64, CSV/JSON, Beautifier, Diff tools - Responsive navigation with dropdown menu - Dark/light mode toggle - Mobile-responsive design with sticky header - All tools working with copy/paste functionality
33 lines
800 B
TypeScript
33 lines
800 B
TypeScript
/// <reference types="node" />
|
|
declare const g: typeof globalThis | NodeJS.Global;
|
|
declare class AssertionError extends g.Error {
|
|
generatedMessage: any;
|
|
name: any;
|
|
code: any;
|
|
actual: any;
|
|
expected: any;
|
|
operator: any;
|
|
constructor(options: any);
|
|
}
|
|
declare function message(key: any, args: any): any;
|
|
declare function E(sym: any, val: any): void;
|
|
export declare const Error: {
|
|
new (key: any, ...args: any[]): {
|
|
[x: string]: any;
|
|
};
|
|
[x: string]: any;
|
|
};
|
|
export declare const TypeError: {
|
|
new (key: any, ...args: any[]): {
|
|
[x: string]: any;
|
|
};
|
|
[x: string]: any;
|
|
};
|
|
export declare const RangeError: {
|
|
new (key: any, ...args: any[]): {
|
|
[x: string]: any;
|
|
};
|
|
[x: string]: any;
|
|
};
|
|
export { message, AssertionError, E, };
|