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 ddf4c6a commit a1507f5Copy full SHA for a1507f5
src/js/integrations/sdkinfo.ts
@@ -64,3 +64,12 @@ export class SdkInfo implements Integration {
64
});
65
}
66
67
+
68
+//this is 4.0 feature and cant be downleveled
69
+type Strings = [string, string];
70
+type Numbers = [number, number];
71
+export type StrStrNumNumBool = [...Strings, ...Numbers, boolean];
72
73
+//this will be downleveled
74
+type World = "world";
75
+export type Greeting = `hello ${World}`;
0 commit comments