fix(isolated_declarations): fix fixture spacing

This commit is contained in:
Boshen 2024-09-21 00:42:59 +08:00
parent 0f96b59990
commit ee748b0c05
No known key found for this signature in database
GPG key ID: 67715A371E534061

View file

@ -23,15 +23,15 @@ export class Baz {
/**
* Just a comment
*/
readonly prop1 = 'some string';
readonly prop1 = "some string";
/**
* Just a comment
*/
prop2 = 'another string';
prop2 = "another string";
/**
* Just a comment
*/
private prop3 = 'yet another string';
private prop3 = "yet another string";
/**
* Just a comment
*/
@ -39,7 +39,7 @@ export class Baz {
/**
* Just a comment
*/
private static prop5 = 'yet another string';
private static prop5 = "yet another string";
/**
* Just a comment
*/