simple-datatables
Version:
A lightweight, dependency-free JavaScript HTML table plugin.
14 lines (13 loc) • 343 B
TypeScript
import { DataTable } from "../datatable";
/**
* Export table to SQL
*/
interface sqlUserOptions {
download?: boolean;
skipColumn?: number[];
tableName?: string;
selection?: number | number[];
filename?: string;
}
export declare const exportSQL: (dt: DataTable, userOptions?: sqlUserOptions) => string | false;
export {};