UNPKG

simple-ascii-chart

Version:
11 lines (10 loc) 314 B
import { Graph, Point } from '../types'; export declare const getZTile: (z: number) => string; export declare const drawHeatmap: ({ index, arr, graph, scaledX, scaledY, scaledZ, }: { index: number; arr: Point[]; graph: Graph; scaledX: number; scaledY: number; scaledZ?: number; }) => void;