@uifabric/merge-styles
Version:
Style loading utilities.
12 lines (11 loc) • 352 B
TypeScript
export interface IVendorSettings {
isWebkit?: boolean;
isMoz?: boolean;
isMs?: boolean;
isOpera?: boolean;
}
export declare function getVendorSettings(): IVendorSettings;
/**
* Sets the vendor settings for prefixing and vendor specific operations.
*/
export declare function setVendorSettings(vendorSettings?: IVendorSettings): void;