- 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.
- 數據庫原理及應用(Access版)第3版
- 軟件界面交互設計基礎
- Arduino家居安全系統構建實戰
- JavaCAPS基礎、應用與案例
- Windows內核編程
- 持續集成與持續交付實戰:用Jenkins、Travis CI和CircleCI構建和發布大規模高質量軟件
- XML程序設計(第二版)
- Hadoop Blueprints
- 美麗洞察力:從化妝品行業看顧客需求洞察
- JavaScript設計模式與開發實踐
- 現代JavaScript編程:經典范例與實踐技巧
- Java性能權威指南
- React Native -Building Mobile Apps with JavaScript
- WebRTC Cookbook
- C語言程序設計:現代方法(第2版)