Why using export in TypeScript?
Export - Exporting a declaration
Any variable, function, class or interface can be exported by using the export keyword. After using export keyword, you can access your variable, function, class or interface to outside the module.
Examples as–
module System.modules { //this function can be accessed from outside the module becaues using export. export function addNumbers(a: number, b: number): number { return a + b; } // this class can be accessed from outside the module becaues using export. export class ExportedClass { public subNumbers(a: number, b: number): number { return a - b; } } }
And
namespace System.namespaces { //this function can be accessed from outside the module becaues using export. export function addNumbers(a: number, b: number): number { return a + b; } // this class can be accessed from outside the module becaues using export. export class ExportedClass { public subNumbers(a: number, b: number): number { return a - b; } } }
I hope you are enjoying with this post! Please share with you friends. Thank you!!