idea-toolbox
Version:
IDEA's utility functions
17 lines (16 loc) • 489 B
TypeScript
import { Resource } from './resource.model';
/**
* A class to inherit for specifying the format of an Excel file's rows.
*/
export declare class ExcelRow extends Resource {
/**
* The row number in the Excel file of origin.
*/
__rowNum__: number;
load(x: any): void;
/**
* Sample data to show how the content of the Excel file should be structured.
* To be updated accordingly in the child class.
*/
static getTemplateExample(): ExcelRow[];
}