export interface IImmutableService {
    setRowData(data: any[]): void;
    isActive(): boolean;
}
