- 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.
- Go Web編程
- Hands-On Machine Learning with scikit:learn and Scientific Python Toolkits
- Mastering Ember.js
- JavaScript 網(wǎng)頁(yè)編程從入門(mén)到精通 (清華社"視頻大講堂"大系·網(wǎng)絡(luò)開(kāi)發(fā)視頻大講堂)
- 技術(shù)領(lǐng)導(dǎo)力:程序員如何才能帶團(tuán)隊(duì)
- Production Ready OpenStack:Recipes for Successful Environments
- MariaDB High Performance
- Interactive Applications Using Matplotlib
- Android Native Development Kit Cookbook
- Mastering Drupal 8 Views
- Java系統(tǒng)化項(xiàng)目開(kāi)發(fā)教程
- Go語(yǔ)言精進(jìn)之路:從新手到高手的編程思想、方法和技巧(1)
- Learning jQuery(Fourth Edition)
- AutoCAD 2009實(shí)訓(xùn)指導(dǎo)
- Citrix XenServer企業(yè)運(yùn)維實(shí)戰(zhàn)