Skip to content

Commit dd13747

Browse files
fix: failed to resolve type for typeof static class property (#1119)
1 parent 7fd7b36 commit dd13747

File tree

4 files changed

+21
-1
lines changed

4 files changed

+21
-1
lines changed

src/NodeParser/TypeofNodeParser.ts

+5-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,11 @@ export class TypeofNodeParser implements SubNodeParser {
2424
const valueDec = symbol.valueDeclaration!;
2525
if (ts.isEnumDeclaration(valueDec)) {
2626
return this.createObjectFromEnum(valueDec, context, reference);
27-
} else if (ts.isVariableDeclaration(valueDec) || ts.isPropertySignature(valueDec)) {
27+
} else if (
28+
ts.isVariableDeclaration(valueDec) ||
29+
ts.isPropertySignature(valueDec) ||
30+
ts.isPropertyDeclaration(valueDec)
31+
) {
2832
if (valueDec.type) {
2933
return this.childNodeParser.createType(valueDec.type, context);
3034
} else if (valueDec.initializer) {

test/valid-data-type.test.ts

+1
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ describe("valid-data-type", () => {
5959
it("type-typeof", assertValidSchema("type-typeof", "MyType"));
6060
it("type-typeof-value", assertValidSchema("type-typeof-value", "MyType"));
6161
it("type-typeof-object-property", assertValidSchema("type-typeof-object-property", "MyType"));
62+
it("type-typeof-class-static-property", assertValidSchema("type-typeof-class-static-property", "MyType"));
6263
it("type-typeof-enum", assertValidSchema("type-typeof-enum", "MyObject"));
6364
it("type-typeof-class", assertValidSchema("type-typeof-class", "MyObject"));
6465
it("type-keys", assertValidSchema("type-typeof-keys", "MyType"));
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
class Foo {
2+
static bar = "foo"
3+
}
4+
5+
export type MyType = typeof Foo.bar;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"$ref": "#/definitions/MyType",
3+
"$schema": "http://json-schema.org/draft-07/schema#",
4+
"definitions": {
5+
"MyType": {
6+
"const": "foo",
7+
"type": "string"
8+
}
9+
}
10+
}

0 commit comments

Comments
 (0)