You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
323 B
TypeScript
11 lines
323 B
TypeScript
/*! © Fedonyuk Anton - datatables.net/license */
|
|
declare module 'datatables.net' {
|
|
interface DataTablesStaticRender {
|
|
/** Renders the column data as HTML anchor (`a` tag) */
|
|
anchor(type: string, attribute: {
|
|
[key: string]: any;
|
|
}, innerText: string | null): any;
|
|
}
|
|
}
|
|
export {};
|