gd-sprest-bs
Version:
SharePoint JavaScript, TypeScript and Web Components designed using the Bootstrap framework.
14 lines (12 loc) • 342 B
text/typescript
// Export the core library
export * from ".";
// Bootstrap icons
import { IconTypes, Icons } from "./icons";
export { Icons, IconTypes }
// Ensure the global variable exists
const $REST = window && window["$REST"];
if ($REST) {
// Update the $REST global variable
$REST.IconTypes = IconTypes;
$REST.Icons = Icons;
}