We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 05214f1 commit dd87e12Copy full SHA for dd87e12
src/test/mock.json
@@ -551,4 +551,4 @@
551
],
552
"fileName": "src/test/mock.ts"
553
}
554
-]
+]
src/test/mock.ts
@@ -313,12 +313,10 @@ export const PrincipalTextSchema = z.string().refine(
313
* Should differentiate methods / properties and static methods / properties
314
*/
315
export class Number {
316
-
317
hello: string;
318
static world: string;
319
320
- constructor(public value: number) {
321
- }
+ constructor(public value: number) {}
322
323
add(n: Number) {
324
return new Number(this.value + n.value);
@@ -327,4 +325,4 @@ export class Number {
327
325
static add(n1: Number, n2: Number) {
328
326
return new Number(n1.value + n2.value);
329
330
-}
+}
0 commit comments