UNPKG

@rxap/material-table-system

Version:

This package provides a set of Angular directives, components, and services to enhance and customize Angular Material tables. It includes features such as row selection, column filtering, expandable rows, table actions, and more. The goal is to simplify c

9 lines (8 loc) 1.03 kB
import { TableActionMethodOptions } from './decorators'; import { RowActionCheckFunction, TableRowActionMethod, TableRowActionTypeMethod, TableRowActionTypeSwitchMethod } from './types'; export declare function IsTableRowActionTypeSwitchMethod<Data extends Record<string, any>>(method: TableRowActionMethod<Data>): method is TableRowActionTypeSwitchMethod<Data>; export declare function IsTableRowActionTypeMethod<Data extends Record<string, any>>(type: string): (method: TableRowActionMethod<Data>) => method is TableRowActionTypeMethod<Data>; export declare function HasTableRowActionCheckFunction(method: TableRowActionMethod<any>): boolean; export declare function GetTableRowActionCheckFunction<Data extends Record<string, unknown> = Record<string, unknown>>(method: TableRowActionMethod<Data>): RowActionCheckFunction<Data>; export declare function HasTableRowActionMetadata(method: TableRowActionMethod): boolean; export declare function GetTableRowActionMetadata(method: TableRowActionMethod): TableActionMethodOptions;