clickable-json
Version:
Interactive JSON and JSON CRDT viewer and editor
7 lines (6 loc) • 453 B
TypeScript
import { type Theme } from 'nano-theme';
export declare const valueColor: (isDark: boolean, value: unknown) => string | undefined;
export declare const valueBg: (value: unknown) => string | undefined;
export declare const inputColor: (isDark: boolean, input: string) => string | undefined;
export declare const inputStyle: (theme: Theme, isDark: boolean, input: string) => React.CSSProperties;
export declare const typeahead: (value: string) => string;