TypeScript 新手指南
  • 前言
  • 簡介
    • 什麼是 TypeScript
    • 安裝 TypeScript
    • Hello TypeScript
  • 基礎
    • 原始資料型別
    • 任意值
    • 型別推論
    • 聯合型別
    • 物件的型別——介面
    • 陣列的型別
    • 函式的型別
    • 型別斷言
    • 宣告檔案
    • 內建物件
  • 進階
    • 型別別名
    • 字串字面量型別
    • 元組
    • 列舉
    • 類別
    • 類別與介面
    • 泛型
    • 宣告合併
    • 延伸閱讀
  • 工程
    • 程式碼檢查
  • 感謝
Powered by GitBook
On this page

Was this helpful?

簡介

Previous前言Next什麼是 TypeScript

Last updated 5 years ago

Was this helpful?

本部分介紹了在學習 TypeScript 之前需要了解的知識,具體內容包括:

什麼是 TypeScript
安裝 TypeScript
Hello TypeScript
上一章:前言
下一章:什麼是 TypeScript