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 /es-es/typescript-es.html.markdown | |
parent | 0f69e0cddb727aaf88a04831cd0cce2231030ad2 (diff) |
[typescript/*] Use ts for typescript syntax
Diffstat (limited to 'es-es/typescript-es.html.markdown')
-rw-r--r-- | es-es/typescript-es.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/es-es/typescript-es.html.markdown b/es-es/typescript-es.html.markdown index 607a1beb..c2f4e489 100644 --- a/es-es/typescript-es.html.markdown +++ b/es-es/typescript-es.html.markdown @@ -16,7 +16,7 @@ Este artículo se enfocará solo en la sintáxis extra de TypeScript, y no en [J Para probar el compilador de TypeScript, diríjase al [Área de Pruebas](https://www.typescriptlang.org/Playground) donde podrá tipear código, y ver como se auto-completa al tiempo que ve el código emitido JavaScript. -```js +```ts // Existen 3 tipos básicos en TypeScript var isDone: boolean = false; var lines: number = 42; |