1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00

chore: update roadmap content json (#8397)

Co-authored-by: kamranahmedse <4921183+kamranahmedse@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2025-03-25 21:42:50 +06:00
committed by GitHub
parent e362d4250e
commit cda2be543d
21 changed files with 311 additions and 292 deletions

View File

@@ -1027,11 +1027,6 @@
"title": "External Modules",
"description": "In TypeScript, external modules allow you to organize and share code across multiple files. External modules in TypeScript follow the CommonJS or ES modules standards.\n\nHere's an example of how you can use external modules in TypeScript:\n\n // myModule.ts\n export function doSomething() {\n console.log('Doing something...');\n }\n \n // main.ts\n import { doSomething } from './myModule';\n doSomething(); // Output: \"Doing something...\"\n \n\nIn this example, we use the \"export\" keyword in the \"myModule.ts\" file to export the \"doSomething\" function, making it available for other files to use.\n\nLearn more from the following links:",
"links": [
{
"title": "External Module",
"url": "https://www.javatpoint.com/typescript-module",
"type": "article"
},
{
"title": "TypeScript - External Module",
"url": "https://learncodeweb.com/typescript/modules-in-typescript-explain-with-an-example/",