@mikezimm/fps-library-v2
Version:
Library of reusable typescript/javascript functions, interfaces and constants
27 lines (26 loc) • 1.11 kB
JavaScript
/**
* CodeAnalizerComment: Updated 1 imports on 2024-09-22 14:49:52
* Update:: import { IWebpartBannerProps } to '@mikezimm/fps-core-v7/lib/banner/mainReact/IWebpartBannerProps;'
*/
import { getHelpListPerformance } from "./listview/ListPerformance";
// import { getHelpRefinerColumns } from "./listview/RefinerColumns";
import { getHelpStringFunctions } from "./listview/StringFunctions";
// import { getHelpRefinerRules } from "./listview/RefinerRules";
import { getHelpViews } from "./listview/Views";
// import { getHelpStats } from "./listview/Stats";
// import { getHelpCommands } from "./listview/Commands";
import { getHelpUsers } from "./listview/Users";
export function ListViewHelp(bannerProps) {
const pages = [
getHelpListPerformance(),
// getHelpRefinerColumns ( ) ,
getHelpStringFunctions(),
// getHelpRefinerRules ( ) ,
getHelpViews(bannerProps),
// getHelpStats ( bannerProps ) ,
// getHelpCommands ( bannerProps ) ,
getHelpUsers(),
];
return pages;
}
//# sourceMappingURL=ListView.js.map