diff options
author | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-19 04:34:47 -0700 |
---|---|---|
committer | Boris Verkhovskiy <boris.verk@gmail.com> | 2024-04-19 04:34:47 -0700 |
commit | f56f80dd803b24a5c7fdc96e97d855129563e671 (patch) | |
tree | 5e3e1681eed5b5a9d39c251146076371f8a94dbe /fr-fr/typescript-fr.html.markdown | |
parent | 0f69e0cddb727aaf88a04831cd0cce2231030ad2 (diff) |
[typescript/*] Use ts for typescript syntax
Diffstat (limited to 'fr-fr/typescript-fr.html.markdown')
-rw-r--r-- | fr-fr/typescript-fr.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fr-fr/typescript-fr.html.markdown b/fr-fr/typescript-fr.html.markdown index 787b9a05..d0498e88 100644 --- a/fr-fr/typescript-fr.html.markdown +++ b/fr-fr/typescript-fr.html.markdown @@ -16,7 +16,7 @@ Cet article se concentrera seulement sur la syntaxe supplémentaire de TypeScrip Pour tester le compilateur de TypeScript, rendez-vous au [Playground](https://www.typescriptlang.org/Playground) où vous pourrez coder, profiter d'une autocomplétion et accéder directement au rendu JavaScript. -```js +```ts // Il y a 3 types basiques en TypeScript var isDone: boolean = false; var lines: number = 42; |