prettier/tests/typescript_keyof/__snapshots__/jsfmt.spec.js.snap

16 lines
340 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`keyof.ts 1`] = `
type A = keyof (T | U);
type B = keyof (X & Y);
type C = keyof T | U;
type D = keyof X & Y;
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
type A = keyof (T | U);
type B = keyof (X & Y);
type C = keyof T | U;
type D = keyof X & Y;
`;