mui-spfx-controls
Version:
SPFx component library built with MUI
16 lines • 557 B
TypeScript
import { WebPartContext } from '@microsoft/sp-webpart-base';
import { BoxProps } from '@mui/material';
import { IPropertyFieldList } from '@pnp/spfx-property-controls';
interface IBreadcrumbData {
Name: string;
ServerRelativeUrl: string;
}
interface IExplorerProps {
context: WebPartContext;
library: IPropertyFieldList;
defaultDisplayType?: 'grid' | 'list';
height?: BoxProps['height'];
onFileOpen?: (file: IBreadcrumbData) => void;
}
export type { IBreadcrumbData, IExplorerProps };
//# sourceMappingURL=IExplorerProps.d.ts.map