1 | import { Tree } from '@angular-devkit/schematics';
|
2 | import { DefaultTreeElement } from 'parse5';
|
3 | /** Appends the given element HTML fragment to the `<head>` element of the specified HTML file. */
|
4 | export declare function appendHtmlElementToHead(host: Tree, htmlFilePath: string, elementHtml: string): void;
|
5 | /** Parses the given HTML file and returns the head element if available. */
|
6 | export declare function getHtmlHeadTagElement(htmlContent: string): DefaultTreeElement | null;
|