mirror of
https://github.com/danbulant/oxc
synced 2026-05-19 12:19:15 +00:00
fix(isolated_declarations): fix fixture spacing
This commit is contained in:
parent
0f96b59990
commit
ee748b0c05
1 changed files with 4 additions and 4 deletions
|
|
@ -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
|
||||
*/
|
||||
|
|
|
|||
Loading…
Reference in a new issue