Skip to content

Commit

Permalink
[typescript/*] Use ts for typescript syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
verhovsky committed Apr 19, 2024
1 parent 0f69e0c commit f56f80d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion es-es/typescript-es.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion fr-fr/typescript-fr.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
2 changes: 1 addition & 1 deletion hu-hu/typescript-hu.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Ez a dokumentum a TypeScript által hozzáadott új szintaxissal foglalkozik, ne

Hogy kipróbáld a TypeScript fordítót, látogass el a [Játszótérre avagy Playground-ra](https://www.typescriptlang.org/Playground) ahol kódot írhatsz automatikus kódkiegészítéssel, és közvetlenül láthatod az előállított JavaScript kódot.

```js
```ts
// 3 alapvető típus létezik TypeScriptben
var isDone: boolean = false;
var lines: number = 42;
Expand Down
2 changes: 1 addition & 1 deletion nl-nl/typescript-nl.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ Dit artikel focust zich alleen op de extra's van TypeScript tegenover [JavaScrip
Om de compiler van TypeScript te kunnen proberen kun je naar de [Playground](https://www.typescriptlang.org/Playground) gaan.
Hier kun je automatisch aangevulde code typen in TypeScript en de JavaScript variant bekijken.

```js
```ts
// Er zijn 3 basis typen in TypeScript
var isKlaar: boolean = false;
var lijnen: number = 42;
Expand Down
2 changes: 1 addition & 1 deletion pt-br/typescript-pt.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Este artigo irá se concentrar apenas na sintaxe extra do TypeScript, ao contrá

Para testar o compilador TypeScript, vá para o [Playground](https://www.typescriptlang.org/Playground), onde você vai ser capaz de escrever código, ter auto conclusão e ver diretamente o JavaScript emitido.

```js
```ts
// Existem 3 tipos básicos no TypeScript
var isDone: boolean = false;
var lines: number = 42;
Expand Down
2 changes: 1 addition & 1 deletion ru-ru/typescript-ru.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ TypeScript добавляет в Javascript общие концепции, та
Для тестирования компилятора TypeScript пройдите по ссылке в [песочницу](https://www.typescriptlang.org/Playground).
Там вы можете написать код (с поддержкой автодополнения) и сразу же увидеть сгенерированный JavaScript код.

```js
```ts
// В TypeScript есть 3 базовых типа
var isDone: boolean = false;
var lines: number = 42;
Expand Down
2 changes: 1 addition & 1 deletion tr-tr/typescript-tr.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Bu makale sadece TypeScript'e ait ekstra söz dizimini konu alır, JavaScript i

TypeScript derleyiciyi test etmek için [Playground](https://www.typescriptlang.org/Playground)'a gidin. Orada otomatik tamamlama ile kod yazabilecek ve üretilen JavaScript'i görebileceksiniz.

```js
```ts
// TypeScript'te üç ana tip vardır.
var bittiMi: boolean = false;
var satırlar: number = 42;
Expand Down

0 comments on commit f56f80d

Please sign in to comment.