core-cde
Version:
14 lines (13 loc) • 491 B
TypeScript
import { Action } from './Action';
export declare class ActionTable<T> extends Action<T> {
dataSetGuid?: string;
tableGuid?: string;
nextGuid: string;
prevGuid: string;
constructor(props: T, documentId?: string, pageId?: string, widgetId?: string, dataSetGuid?: string, tableGuid?: string);
/**
* Получить объект для сериализации
* @returns Объект для сериализации
*/
toJSON(): any;
}