mui-spfx-controls
Version:
SPFx component library built with MUI
14 lines • 628 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 ICodeEditorWebPartProps {
renderControls: boolean;
}
export default class CodeEditorWebPart extends BaseClientSideWebPart<ICodeEditorWebPartProps> {
render(): void;
protected onInit(): Promise<void>;
protected onDispose(): void;
protected get dataVersion(): Version;
protected getPropertyPaneConfiguration(): IPropertyPaneConfiguration;
}
//# sourceMappingURL=CodeEditorWebPart.d.ts.map