csv-import-react
Version:
Open-source CSV, TSV, and XLS/XLSX file importer for React and JavaScript
37 lines (36 loc) • 696 B
TypeScript
declare const storyData: ({
id: number;
Name: {
raw: string;
content: string;
captionInfo: string;
tooltip?: undefined;
};
Age: number;
Email: string;
email?: undefined;
} | {
id: number;
Name: {
raw: string;
content: string;
tooltip: string;
captionInfo?: undefined;
};
Age: number;
Email: string;
email?: undefined;
} | {
id: number;
Name: string;
Age: number;
Email: string;
email?: undefined;
} | {
id: number;
Name: string;
Age: number;
email: string;
Email?: undefined;
})[];
export default storyData;