gridjs
Version:
Advanced table plugin
14 lines (13 loc) • 342 B
TypeScript
import { BaseActions } from 'gridjs';
export interface RowSelectionActionsType {
CHECK: {
ROW_ID: string;
};
UNCHECK: {
ROW_ID: string;
};
}
export declare class RowSelectionActions extends BaseActions<RowSelectionActionsType> {
check(rowId: string): void;
uncheck(rowId: string): void;
}