import { OnInit } from '@angular/core'; import { BrandService } from '../services/index'; /** * Handles branding an application with style injection * Example usage:
* @author Sean Perkins * @export * @class BrandingDirective * @implements {OnInit} */ export declare class BrandingDirective implements OnInit { private brand; private _styles; constructor(brand: BrandService); ngOnInit(): void; /** * Converts a JS object into a CSS string block * * @private * @param {*} styleObj The style object to convert to css * @returns Prettified CSS string for injection into a style tag */ private cssify(styleObj); }