Angular 2 — Component Lifecycle Hooks

How to create custom type definitions in Angular 2?

How to create custom type definitions in Angular 2?

What is Typing?
Typings is the simple way to manage and install TypeScript definitions. It uses “typings.json”, which can resolve to the Typings Registry, NPM, HTTP and local files.

Custom Type Definitions:-

In Angular 2, when we including 3rd party modules. We also need to include the type definition for this module and if they do not provide one within the modules.

If you want to try to install it with typings,

typings install node save

If we cannot find the type definition in the registry, we can make an extensive definition in this file for now.

For example as,

declare module myModule {
   export function toDo(value: string): string;
}


I hope you are enjoying with this post! Please share with you friends. Thank you!!
ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^