noxon
Version:
Better JSON parsing and manipulation in TypeScript.
7 lines (5 loc) • 425 B
TypeScript
type HLJSLanguage = "javascript" | "typescript" | "json" | "xml";
declare const consoleDisplay: (value: Record<string, any>) => void | undefined;
declare const display: <displayValue>(value: displayValue, selector: string) => void | undefined;
declare const colormatic: <Value extends any>(value: Value, lang: HLJSLanguage, selector: string, theme?: string) => Promise<void>;
export { colormatic, consoleDisplay, display };