December 2017
Beginner
372 pages
10h 32m
English
The TypeScript program is organized into modules, which contain classes, functions, and variables. Each of these features are achieved using specific keywords, such as export for exposing a class or function to an outside module, and import for accessing a class or function from a different module. The following figure shows the high-level structure of typical TypeScript code. The module is the outermost container which will be composed of multiple classes. Each class will contain variables and functions to provide a specific functionality:
The following table provides an overview of some of the keywords available ...
Read now
Unlock full access