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

13 lines
254 B
Plaintext

// Jest Snapshot v1, https://goo.gl/fbAQLP
exports[`readonly.ts 1`] = `
class Foo {
public readonly foo = 'string';
}
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
class Foo {
public readonly foo = "string";
}
`;