You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/content/development/hacking-on-gitea.en-us.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -201,7 +201,7 @@ Prefer to use type aliases because they can represent any type and are generally
201
201
202
202
### Use explicit type imports and exports
203
203
204
-
We use `verbatimModuleSyntax` so type imports and exports must be performed using `export type` and `import type` statements. Type imports and non-type imports from the same file must be split into two `import` statements. This enables the typescript compiler to completely eliminate the type import statements during compilation.
204
+
We use `verbatimModuleSyntax` so type imports and exports must be performed using `import type` and `export type` statements. Type imports and non-type imports from the same file must be split into two `import` statements. This enables the typescript compiler to completely eliminate the type import statements during compilation.
205
205
206
206
### Use `@ts-expect-error` instead of `@ts-ignore`
0 commit comments