ngx-dynamic-hooks
Version:
Automatically insert live Angular components into a dynamic string of content (based on their selector or any pattern of your choice) and render the result in the DOM.
17 lines (16 loc) • 728 B
TypeScript
import { SelectorHookParserConfig } from './selectorHookParserConfig';
import * as i0 from "@angular/core";
/**
* A helper class for resolving a SelectorHookParserConfig
*/
export declare class SelectorHookParserConfigResolver {
constructor();
/**
* Overwrites the default parser config with a (partial) SelectorHookParserConfig object and returns the result
*
* @param userParserConfig - The (partial) SelectorHookParserConfig object
*/
processConfig(userParserConfig: SelectorHookParserConfig): SelectorHookParserConfig;
static ɵfac: i0.ɵɵFactoryDeclaration<SelectorHookParserConfigResolver, never>;
static ɵprov: i0.ɵɵInjectableDeclaration<SelectorHookParserConfigResolver>;
}