We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 27926fa commit 5ca6b62Copy full SHA for 5ca6b62
3 files changed
tests/basicFile.ts
@@ -0,0 +1,5 @@
1
+interface Foo {
2
+ bar: number
3
+}
4
+
5
+export const foo: Foo = { bar: 1 }
tests/reactFile.tsx
@@ -0,0 +1,6 @@
+import React from 'react'
+// This is a Button component
+export const Button = () => {
+ return <div>Foo Bar</div>
6
tests/tokenFile.jsonc
@@ -0,0 +1,4 @@
+{
+ // This is foo.
+ "foo": "bar"
0 commit comments