mui-spfx-controls
Version:
SPFx component library built with MUI
25 lines • 881 B
TypeScript
import { Version } from '@microsoft/sp-core-library';
import { type IPropertyPaneConfiguration } from '@microsoft/sp-property-pane';
import { BaseClientSideWebPart } from '@microsoft/sp-webpart-base';
export interface IDashboardWebPartProps {
list: string;
fields: string[];
height: number;
editable: boolean;
resizable: boolean;
exportAction: boolean;
filterAction: boolean;
tabAction: true;
searchAction: boolean;
densityAction: boolean;
columnAction: boolean;
tabValue: string;
}
export default class DashboardWebPart extends BaseClientSideWebPart<IDashboardWebPartProps> {
render(): void;
protected onInit(): Promise<void>;
protected onDispose(): void;
protected get dataVersion(): Version;
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration;
}
//# sourceMappingURL=DashboardWebPart.d.ts.map