-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathindex.ts
206 lines (154 loc) · 4.18 KB
/
index.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
// Basic Types.
var isDone: boolean = true
var height: number = 6
var name: string = 'test'
var list: number[] = [1, 2, 3] // Also: `var list: Array<number> = [1, 2, 3]` which is using generics.
// Enums.
enum Color { Red, Green, Blue }
var c: Color = Color.Green
// Any. Useful for those variables that we have no idea about.
var notSure: any = 4
notSure = 'maybe a string'
notSure = false
var anotherList: any[] = [1, true, 'free'] // Mix `any` with other types.
// Void. The absense of a type.
function warnUser (): void {
alert('This is my warning message')
}
// Function Declaration with Types.
function add (a: number, b: number): number {
// return 'some string' //=> Error: Type 'string' is not assignable to type 'number'.
return a + b
}
// Optional Parameters.
function sayHello (name?: string) {
// Name is optional.
if (name) {
console.log('Hello ' + name + '!')
}
console.log('Hello')
}
// Variables
var x = 10 // Inferred 'number' type.
var y: number = 20 // Explicit 'number' type.
// Function calls.
add(x, y) // Works.
// add('a', 'b') //=> Error: Argument of type 'string' is not assignable to parameter of type 'number'.
// Type inferencing.
function takesCallback (cb: (error: Error) => any) {
return cb(new Error('Boom!'))
}
takesCallback(function (err) {
console.log(err.message)
})
// Interfaces.
interface MyInterface {
value: string // Has a property which is a `string`.
method (): number // Has a method that returns a `number`.
(): boolean // It's a function that returns a `boolean`.
}
// Type Assertions.
interface Foo {
x: number
y: number
}
var foo = {} as Foo
foo.x = 10
foo.y = 10
// foo.anotherValue = 'test' //=> Error: Property 'anotherValue' does not exist on type 'Foo'.
// Not possible to do.
// var bad = { x: 10 } as string
// But we can force it to happen.
var bad = { x: 10 } as any as string
bad.toUpperCase() // What?
// Type shorthand.
type HelloWorld = string
function print (): HelloWorld {
return 'hello world'
}
print().toUpperCase() //=> "HELLO WORLD".
function getLabel (obj: { label: string }): string {
return obj.label
}
// Could also use in a type.
type LabelObj = { label: string }
// Or an interface.
// interface LabelObj { label: string }
// Extending Interfaces.
interface Animal {
legs: number
}
interface Dog extends Animal {
bark: string
}
// Type guards.
function typeGuard (obj: Dog): obj is Dog {
return typeof obj.bark === 'string'
}
var dog = { legs: 4, bark: 'woof!' }
if (typeGuard(dog)) {
alert('It\'s a dog! ' + dog.bark) // Definitely a dog.
}
// Generics.
function identity <T> (arg: T): T {
return arg
}
function arrify <T> (arr: T | T[]): T[] {
if (Array.isArray(arr)) {
return arr
}
return [arr] as T[]
}
interface Map <T> {
[key: string]: T
}
var dictionary: Map<string> = {}
dictionary[name] = name
// Union Types.
var value: string | string[] = 'test'
console.log(value.length) // Works because it exists on both `string` and `Array`.
// Intersection Types.
function extend <A, B> (a: A, b: B): A & B {
Object.keys(b).forEach(key => {
(a as any)[key] = (b as any)[key]
})
return a as A & B
}
function makeDogFromAnimal (animal: Animal): Dog {
return extend(animal, { bark: 'woof woof woof' })
}
// Tuples.
var tuple: [string, number] = ['hello', 10]
// tuple = [10, 'hello'] //=> Error: Type '[number, string]' is not assignable to type '[string, number]'.
console.log(tuple[0].substr(1))
// console.log(tuple[1].substr(1)) //=> Error: Property 'substr' does not exist on type 'number'.
// `typeof`.
import * as TS from 'typescript'
declare function require (module: string): any
function eventually () {
var ts: typeof TS = require('typescript')
}
// `typeof` only works on values, but you can use an interface with generics.
class Foo { bar: string }
function create <T> (Clazz: { new (): T }): T {
return new Clazz()
}
var result = create(Foo)
// `this`.
class Calculator {
constructor (protected value: number = 0) {}
result (): number {
return this.value
}
add (operand: number) {
this.value += operand
return this
}
subtract(operand: number) {
this.value -= operand
return this
}
}
var x = new Calculator(10)
.add(5)
.result()