Version: 5.0.0-beta.15.0.0-beta.25.0.0-beta.35.0.0-beta.45.0.0-beta.55.0.0-beta.65.0.0-beta.75.0.0-beta.85.0.0-beta.95.0.0-beta.105.0.0-beta.115.0.0-beta.125.0.0-beta.135.0.0-beta.145.0.0-beta.155.0.0-beta.165.0.0-beta.175.0.0-beta.185.0.15.1.05.1.15.2.05.3.05.4.05.4.15.4.25.5.05.6.05.7.05.7.15.8.06.0.0-beta16.0.0-beta26.0.0-beta36.0.0-beta46.0.0-beta56.0.0-beta66.0.06.0.16.0.26.0.36.1.06.1.16.1.26.2.06.3.06.4.06.5.06.5.16.5.26.5.36.5.46.5.57.0.0-alpha0017.0.0-alpha0027.0.0-alpha0037.0.0-alpha0047.0.0-alpha0067.0.0-alpha0077.0.0-alpha0087.0.0-alpha0107.0.0-alpha0117.0.0-alpha0127.0.0-alpha0137.0.0-alpha0147.0.0-alpha0157.0.0-alpha0167.0.0-alpha0177.0.0-alpha0187.0.0-alpha0197.0.0-alpha0217.0.0-alpha0227.0.0-alpha0237.0.0-alpha0257.0.0-alpha0307.0.0-alpha0317.0.0-alpha0327.0.0-alpha0337.0.0-alpha0347.0.0-rc0017.0.0-rc0027.0.17.0.27.1.07.1.17.1.27.1.37.2.07.2.17.3.07.3.17.3.27.3.37.3.47.3.57.3.77.3.87.3.97.3.107.3.117.3.127.3.137.3.147.3.157.3.167.3.177.3.187.3.197.3.207.3.217.3.227.3.237.3.247.3.257.3.267.3.277.3.287.3.297.3.307.3.317.3.327.3.337.3.347.3.357.3.367.3.377.3.387.3.397.3.407.3.417.3.427.3.437.3.447.3.457.3.467.3.477.3.487.3.497.3.507.3.517.3.527.3.537.3.547.3.557.3.567.3.577.3.587.3.597.3.607.3.617.3.627.3.637.3.647.3.657.3.667.3.677.3.687.3.697.3.707.3.717.3.727.3.737.4.07.4.17.4.27.4.37.5.07.5.17.5.27.5.37.5.47.5.57.5.67.5.77.5.87.5.97.5.107.5.117.5.127.5.137.5.147.5.157.5.167.5.177.5.187.5.197.5.207.5.217.5.227.5.237.6.07.6.17.6.27.6.37.7.07.7.17.7.27.7.37.7.47.7.57.7.67.8.07.8.17.8.27.8.37.8.47.8.67.9.07.9.17.9.27.9.37.9.47.9.5
import { IIconOptions } from '@uifabric/styling';
declare global {
interface Window {
/**
* The FabricConfig options can be burned on the page prior to script load to provide
* alternative defaults at script load time. This helps avoid race conditions by calling
* `initializeIcons` too late, or in cases where you can't control the `initializeIcons` call,
* such as using the pre-created Fluent bundle.
*/
FabricConfig?: {
* Controls the base url of the font files. This is useful for scenarios where the fonts
* are stored on a private CDN other than the default SharePoint CDN.
fontBaseUrl?: string;
* Controls the base url of the icon font files. This is useful for scenarios where the icons
* are stored on a private CDN other than the default SharePoint CDN. Note that in prior
* iterations, `fontBaseUrl` was used to control both font and icon base urls. While you can
* still use `fontBaseUrl` to provide a single base url for both, the `iconBaseUrl` will be
* used first if available.
iconBaseUrl?: string;
};
}
export declare function initializeIcons(baseUrl?: string, options?: IIconOptions): void;
export { IconNames, IconNamesInput } from './IconNames';
import './version';