11 lines
186 B
TypeScript
11 lines
186 B
TypeScript
import { Color } from './colors';
|
|
|
|
export interface DonutChartConfig {
|
|
value: number;
|
|
color: Color;
|
|
label: string;
|
|
key?: string;
|
|
active?: boolean;
|
|
id?: string;
|
|
}
|