Let's create a new HtmlWrap object extending it with the Wrapper to make an immutable <span> tag.
// Example usage.import { Wrapper } from'@angular-package/wrapper';// Define HtmlWrap class.classHtmlWrapextendsWrapper<`<`,`>`> {constructor() { super(`<`,`>`); }}// Create the html tag '<span>'.newHtmlWrap().wrap(`span`);
OfType
Create a new object OfType to make an immutable string indicating of type : Opening.