igniteui-react-grids
Version:
Ignite UI React grid components.
20 lines (19 loc) • 508 B
JavaScript
import { IgrDefinitionBase } from "./igr-definition-base";
import { SectionFooter } from "./SectionFooter";
/**
* Used to configure the appearance of the section footer cells.
*/
export class IgrSectionFooter extends IgrDefinitionBase {
createImplementation() {
return new SectionFooter();
}
/**
* @hidden
*/
get i() {
return this._implementation;
}
constructor(props) {
super(props);
}
}