External Modules –
External modules are useful in sense they hide the internal statements of the module definitions and show only the methods and parameters associated to the declared variable.
External modules are useful in sense they hide the internal statements of the module definitions and show only the methods and parameters associated to the declared variable.
It is using when dealing with large JavaScript based applications.
When we using nodejs or external modules, you can export an entire module and then import it into another module.
Stayed Informed – Learn Angular 2 with TypeScript
Stayed Informed – Learn Angular 2 with TypeScript
Example -
// userList.ts file // imports the users.ts file as the users module import impUser = module('users'); export function userList() { var user = new impUser.users(); user.getUsers(); } // users.ts file // exports the entire module export class users { getUsers() { return ["Anil", "Alok", "Dilip"]; } }
I hope you are enjoying with this post! Please share with you friends. Thank you!!