@veg/hyphy-eye
Version:
Observable Framework application for building, testing, and exporting visualization components for Datamonkey.org
24 lines (19 loc) • 500 B
TypeScript
/*
* Any types that are used in the tile-table module should be exported here.
*/
// number could become 'item' or something more generic and take a string
// thatd maximize reuse here
interface TileSpec {
number: number;
description: string;
icon: string;
color: string;
}
/*
* Any types that are used in the rate-densities module should be exported here.
*/
interface RateDataSpec {
data_key: string;
display_label: string;
}
export type { RateDataSpec, TileSpec };