/** * DataTable options. This inherits from DataTables.Settings (https://datatables.net/reference/option/) and adds a dedicated item. */ export default interface DataTableOptions extends DataTables.Settings { /** * If asynchronous mode (options.ajax) is enabled, whether to request table data remotely first. * If true, request table data first; if false, do not request table data until the DataTable.reload method is called. * Default is true. */ firstAjax?: boolean; /** * Locale of the displayed text. Default is English (en). */ locale?: 'en' | 'ja'; }