{"version":3,"file":"template_literal.js","sourceRoot":"","sources":["../../src/html/template_literal.ts"],"names":[],"mappings":";;AAOA,oBAGC;AAHD,SAAgB,IAAI,CAAC,OAA6B,EAAE,GAAG,MAAa;IAClE,CAAC;IAAA,CAAC,KAAK,OAAO,EAAE,MAAM,CAAC,CAAA,CAAC,uBAAuB;IAC/C,OAAO,EAAE,KAAK,EAAE,oBAAoB,EAAE,CAAA;AACxC,CAAC","sourcesContent":["// This type never actually gets instantiated because we parse the file with the\n// TypeScript compiler API and don't run the code, so it's just here to be a\n// unique type we can use.\nexport type HtmlTemplateString = {\n __tag: 'HtmlTemplateString'\n}\n\nexport function html(strings: TemplateStringsArray, ...values: any[]): HtmlTemplateString {\n ;(void strings, values) // intentionally unused\n return { __tag: 'HtmlTemplateString' }\n}\n"]}