igniteui-angular-spreadsheet
Version:
Ignite UI Angular spreadsheet component for displaying and editing Microsoft Excel workbooks for modern web apps.
19 lines (18 loc) • 801 B
TypeScript
import { Base, Type } from "igniteui-angular-core";
import { Workbook } from "igniteui-angular-excel";
import { HorizontalCellAlignment } from "igniteui-angular-excel";
import { VerticalCellAlignment } from "igniteui-angular-excel";
import { CellFill } from "igniteui-angular-excel";
/**
* @hidden
*/
export declare class SingleCellSpreadsheetPreviewHelper extends Base {
static $t: Type;
static a(a: number, b: number, c?: HorizontalCellAlignment, d?: VerticalCellAlignment, e?: boolean): Workbook;
static e(a: any, b: Workbook): void;
static d(a: HTMLElement, b: any): void;
static c(a: string, b: Workbook): void;
static b(a: HTMLElement, b: string): void;
static f(a: CellFill, b: Workbook): void;
static g(a: HTMLElement, b: CellFill): void;
}