import { IRow, GenericTable } from "@krisnorman/rpg-utils"; export declare class MyTable extends GenericTable { protected data: T[]; readonly Name: string; readonly DieExpression: string; readonly PrefixText?: string | undefined; constructor(data: T[], Name: string, DieExpression: string, PrefixText?: string | undefined); get Rows(): T[]; } export interface ITableRow extends IRow { CalculatedValue?: string; Notes?: string; TableName?: string; AltValue?: string; Items?: ITableRow[]; } //# sourceMappingURL=MyTable.d.ts.map