reablocks
Version:
Component library for React
14 lines (13 loc) • 381 B
TypeScript
export interface JsonTreeTheme {
/** Class names applied to each JSON tree node and its parts. */
node: {
label: string;
value: string;
delimiter: string;
symbol: string;
count: string;
};
/** CSS class applied to the pager used for paginated nodes. */
pager: string;
}
export declare const jsonTreeTheme: JsonTreeTheme;