@pnp/spfx-controls-react
Version:
Reusable React controls for SharePoint Framework solutions
28 lines • 863 B
TypeScript
import { IFilePickerTab } from "../FilePicker.types";
import { FileBrowserService } from "../../../services/FileBrowserService";
import { IBreadcrumbItem } from "@fluentui/react/lib/Breadcrumb";
export interface ISiteFilePickerTabProps extends IFilePickerTab {
fileBrowserService: FileBrowserService;
/**
* Represents the base node in the breadrumb navigation
*/
breadcrumbFirstNode?: IBreadcrumbItem;
/**
* Specifies a default folder to be active in the Site Files tab
*/
defaultFolderAbsolutePath?: string;
/**
* Title of the default site
*/
webTitle?: string;
/**
* Id of the default site
*/
webId?: string;
/**
* Absolute Url of the default site
*/
webAbsoluteUrl?: string;
includePageLibraries?: boolean;
}
//# sourceMappingURL=ISiteFilePickerTabProps.d.ts.map