\n\t\t\t\t\t
${location.title}
\n\t\t\t\t\t
\n\t\t\t\t\t\t${location.address_lines.join( '
' )}\n\t\t\t\t\t
\n\n\t\t\t\t\t${link}\n\t\t\t\t
\n\t\t\t`;\n\t\t} ).join( '' );\n\t}\n\n\tupdateLocationIntroTitle( postalCode: string ) {\n\t\tconst locationTitle = this.querySelector( '[data-locations-results-for-postal-code]' );\n\t\tif ( !locationTitle ) {\n\t\t\treturn;\n\t\t}\n\n\t\tlocationTitle.textContent = postalCode;\n\t}\n}\n\ncustomElements.define( 'mr-locations-by-postal-code', MrLocationsByPostalCode );\n","interface StateMachineElement extends HTMLElement {\n\tupdateState ( state: string ): void\n}\n\nfunction isStateMachineElement( x: HTMLElement ): x is StateMachineElement {\n\treturn ( x as StateMachineElement ).updateState !== undefined && ( 'function' === typeof( x as StateMachineElement ).updateState );\n}\n\nexport class MrInputSink extends HTMLElement {\n\tstatic get observedAttributes(): Array