Skip to content

Commit 7313a8e

Browse files
committed
Use JSON in the playground headers and not JS
1 parent 6b05263 commit 7313a8e

File tree

191 files changed

+191
-193
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

191 files changed

+191
-193
lines changed

docs/playground/es/JavaScript/External APIs/TypeScript with Deno.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'TypeScript con Deno', order: 3 }
1+
//// { "title": "TypeScript con Deno", "order": 3}
22

33
// Deno es un entorno en tiempo de ejecución aún
44
// incompleto para JavaScript y TypeScript basado en

docs/playground/es/JavaScript/External APIs/TypeScript with Node.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'TypeScript con Node', order: 3, isJavaScript: true }
1+
//// { "title": "TypeScript con Node", "order": 3, "isJavaScript": true}
22

33
// Node.js en un entorno de ejecución muy popular para JavaScript,
44
// construido sobre v8, el motor de JavaScript que utiliza Chrome.

docs/playground/es/JavaScript/External APIs/TypeScript with Web.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'TypeScript con la Web', order: 0, isJavaScript: true }
1+
//// { "title": "TypeScript con la Web", "order": 0, "isJavaScript": true}
22

33
// El DOM (Document Object Model) es la API por detrás del
44
// trabajo con una página web, y TypeScript tiene excelente

docs/playground/es/JavaScript/Functions with JavaScript/Function Chaining.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'Encadenamiento de funciones', order: 2, compiler: { esModuleInterop: true } }
1+
//// { "title": "Encadenamiento de funciones", "order": 2, "compiler": { "esModuleInterop": true }}
22

33
// Las APIs con funciones encadenadas son un patrón común en
44
// JavaScript, lo que permite que tu código sea más conciso,

docs/playground/es/JavaScript/Functions with JavaScript/Generic Functions.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'Funciones genéricas' }
1+
//// { "title": "Funciones genéricas"}
22

33
// La genericidad proporciona una forma de utilizar tipos
44
// como variables en otros tipos. Meta.

docs/playground/es/JavaScript/JavaScript Essentials/Hello World.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'Hola Mundo', order: 0, compiler: { target: 1 } }
1+
//// { "title": "Hola Mundo", "order": 0, "compiler": { "target": 1 }}
22

33
// Bienvenido a TypeScript playground. Este sitio se parece
44
// mucho a ejecutar un proyecto de TypeScript dentro de un

docs/playground/es/JavaScript/JavaScript Essentials/Objects and Arrays.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'Objetos y arreglos', order: 1, compiler: { strict: false } }
1+
//// { "title": "Objetos y arreglos", "order": 1, "compiler": { "strict": false }}
22

33
// Los objetos de JavaScript son colecciones de valores
44
// asociados a un nombre (o clave).

docs/playground/es/TypeScript/Language/Soundness.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// {compiler: { strictFunctionTypes: false } }
1+
//// { "compiler": { "strictFunctionTypes": false }}
22

33
// Sin antecedentes en la teoría de tipos, es poco probable que esté
44
// familiarizado con la idea de que un sistema de tipos sea "sólido".

docs/playground/es/TypeScript/Primitives/Literals.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'Literales' }
1+
//// { "title": "Literales"}
22

33
// TypeScript tambien cuenta con algunos casos especiales
44
// para los literales en el código fuente.

docs/playground/es/TypeScript/Primitives/Union and Intersection Types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
//// { title: 'Tipos Unión e Intersección' }
1+
//// { "title": "Tipos Unión e Intersección"}
22

33
// Las uniones de tipo son una forma de declarar que un
44
// objeto podría ser de más de un tipo.

0 commit comments

Comments
 (0)