Google News
logo
TypeScript - Interview Questions
What is namespace in Typescript and how to declare it?
Namespace groups functionalities logically. These maintain the legacy code of typescript internally. It encapsulates the features and objects that share certain relationships. A namespace is also known as internal modules. A namespace can also include interfaces, classes, functions, and variables to support a group of related functionalities.
 
Syntax :
namespace <namespace_name> {
export interface I1 { }
export class c1{ }
Advertisement