TypeScript ambient module tutorial
TypeScript ambient module:
As we discussed in earlier tutorials TypeScript provides the facility to safely and easily use existing JavaScript libraries like jquery, angularjs, nodejs etc. Ambient … Read More
As we discussed in earlier tutorials TypeScript provides the facility to safely and easily use existing JavaScript libraries like jquery, angularjs, nodejs etc. Ambient … Read More
A module refers to a set of standardized parts or independent units that can be used to construct a more complex structure. TypeScript modules provides … Read More
TypeScript namespace is a way to organize your code. Internal modules in typescript are now referred to namespaces. The namespace keyword is used to define … Read More
Duck-typing is a powerful feature which brings strong typing concepts in TypeScript code. TypeScript provides the duck typing type-checking which focus on the shape … Read More
A real world entity is known as an object. Like every real world object, software objects also have state and behavior. State of the object … Read More
Abstract class is a way of implementing 0 to 100% abstraction. A class declared with abstract keyword is known as an abstract class. An … Read More
As we discussed in earlier tutorials that TypeScript supports object-oriented programming concepts like classes, interfaces, etc. Class acts as a blue print or template for … Read More
Inheritance is one of the OOPs concepts which provides the facility to create a class (new class) from another class (existing class). Existing class is known as … Read More
A point where two systems, subjects, organizations, etc., meet and interact.
An interface is declared with interface keyword. It is a … Read More
TypeScript Union Type provides the facility to combine one or two types for a variable. The pipe symbol (|) is used to combine the … Read More