prettier/tests/multiparser_html_ts/html-with-ts-script.html

21 lines
264 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<script lang="ts">
type X = { [
K in keyof Y
]: Partial < K > } ;
class Foo< T >{
constructor ( private foo: keyof Apple ){
}
}
</script>
</head>
<body></body>
</html>