@nova-ui/dashboards
Version:
Nova Dashboards is a framework designed to provide feature developers with a common solution for presenting data coming from various sources within a single view, as well as a set of predefined widget visualizations that are 100% configuration-driven and
44 lines (43 loc) • 1.07 kB
TypeScript
import { IconStatus } from "@nova-ui/bits";
export declare const GRAPH_DATA_MOCK: {
data: {
countries: ({
name: string;
code: string;
icon: string;
icon_status: IconStatus;
capital: string;
continent: {
name: string;
};
currency: string;
languages: {
name: string;
}[];
} | {
name: string;
code: string;
icon: string;
icon_status: IconStatus;
capital: null;
continent: {
name: string;
};
currency: null;
languages: never[];
} | {
name: string;
code: string;
icon: string;
icon_status: IconStatus;
capital: null;
continent: {
name: string;
};
currency: string;
languages: {
name: string;
}[];
})[];
};
};