- TypeScript Blueprints
- Ivo Gabe de Wolff
- 176字
- 2021-07-14 10:59:26
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning.
Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "We can include other contexts through the use of the include
directive."
A block of code is set as follows:
export function factorial(x: number): number { if (x <= 1) return 1; return x * factorial(x - 1); }
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
export function factorial(x: number): number {
if (x <= 1) return 1;
return x * factorial(x - 1);
}
Any command-line input or output is written as follows:
npm init -y
New terms and important words are shown in bold.
Note
Warnings or important notes appear in a box like this.
Tip
Tips and tricks appear like this.
- Java多線程編程實戰指南:設計模式篇(第2版)
- 深入理解Bootstrap
- Python高效開發實戰:Django、Tornado、Flask、Twisted(第2版)
- TypeScript圖形渲染實戰:基于WebGL的3D架構與實現
- STM32F0實戰:基于HAL庫開發
- Go語言從入門到精通
- Java從入門到精通(視頻實戰版)
- C Primer Plus(第6版)中文版【最新修訂版】
- Extending Docker
- Internet of Things with Arduino Cookbook
- HTML5+CSS+JavaScript深入學習實錄
- GO語言編程從入門到實踐
- Analytics for the Internet of Things(IoT)
- C/C++語言程序開發參考手冊
- INSTANT Apache Maven Starter