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

19 lines
325 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`interface.ts 1`] = `
interface Inline { x: string }
interface MultiLine {
x: string;
y: string;
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
interface Inline { x: string }
interface MultiLine {
x: string
y: string
}
`;