react-export-table-to-excel
Version:
It allows you to export an HTML table just by sending the table reference and the name with which you want the file to be saved
7 lines (6 loc) • 357 B
TypeScript
import { Context } from "../interfaces/context";
export declare function base64(uriComponent: string | number | boolean): string;
export declare function format(s: string, c: Context): string;
export declare const uri = "data:application/vnd.ms-excel;base64,";
export declare const template: string;
export { default as createTable } from "./create-table";