We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5594a03 commit c27eea7Copy full SHA for c27eea7
tests/test-cases/any/input.ts
@@ -0,0 +1,16 @@
1
+export interface PublicInterface {
2
+ field: any;
3
+}
4
+
5
+interface InternalInterface {
6
7
8
9
+/** @public */
10
+interface PublicByJSDocInterface {
11
12
13
14
+function func(obj1: PublicInterface, obj2: InternalInterface, obj3: PublicByJSDocInterface): void {
15
+ console.log(obj1.field.f1Any, obj2.field.f2Any, obj3.field.f3Any);
16
tests/test-cases/any/output.js
@@ -0,0 +1,5 @@
+"use strict";
+Object.defineProperty(exports, "__esModule", { value: true });
+function func(obj1, obj2, obj3) {
+ console.log(obj1.field.f1Any, obj2._internal_field.f2Any, obj3.field.f3Any);
0 commit comments