123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- // Jest Snapshot v1, https://goo.gl/fbAQLP
- exports[`html-with-ts-script.html 1`] = `
- <!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>
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- <!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>
- `;
|