/** * @license * Copyright 厦门乾元盛世科技有限公司 All Rights Reserved. * * Use of this source code is governed by an MIT-style license that can be * found in the LICENSE file. */ import { ElementRef, Renderer } from '@angular/core'; import { Table } from './table'; /** * 表格:内容 */ export declare class TableContent { private _renderer; private _elementRef; table: Table; /** 用户CSS样式 */ class: string; /** 样式前缀 */ readonly prefixCls: string; constructor(_renderer: Renderer, _elementRef: ElementRef, table: Table); readonly classes: string; }