igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
12 lines (11 loc) • 360 B
TypeScript
import { Base, Type } from "igniteui-angular-core";
/**
* Base class for an object that represents the visual data for the spreadsheet.
*/
export declare abstract class SpreadsheetVisualDataBase extends Base {
static $t: Type;
/**
* Returns a string representation of the associated object
*/
abstract serialize(): string;
}