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 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282
|
let an: any; let str: string = '12'; let num: number = 20; let flag: boolean = true;
let arr: number[] = [1]; let ar: Array<number> = [2]; let tuple: [string, number] = ['test', 10];
enum Color { Red, Green, Blue, }; let co: Color = Color.Red;
function hello(): void { console.log('hello'); }
let nu: null; let un: undefined; let ne: never;
var num0: number = <number> <any> str;
function add(x: number = 0, y: number = 0, z?: number, ...other: number[]): number { return x + y + (z ?? 0) + add(...other); } const sub = (x: number, y: number): number => x - y const add_plus: (x: number, y:number) => number = (x, y) => x + y;
var res = function(a: number, b: number) { return a * b; }; (() => console.log('Hello!'))();
let fu: '0' | '1' | '2' | '3' = '1'; const fv = 1;
let arr1: number[] = [1, 2]; let arr2: Array<number> = [3, 4];
let position: [number, string, boolean] = [1, '2', true];
const m: Map<number, number> = new Map();
var union: number | number[]; union = 12; union = [12, 34];
enum Direction { Up, Down, Left, Right, };
var dir: Direction = Direction.Up; enum Direction1 { Left = 10, Right, };
enum Direction2 { Up = 'Up', Down = 'Down', Left = 'Left', Right = 'Right', };
var cc: typeof position;
interface Person { name: string, age: number, birth?: Date, sayHi: string | string[] | (() => string), } var csy: Person = { name: 'CSY', age: 20, birth: new Date(), sayHi: (): string => 'Hi', } const ccc: { name: string, sex?: boolean, } = { name: 'ccc', };
interface Human extends Person { father: Person, mother: Person }
let c = 20; function f(a: number, b:number) { return a + b; }
const alink1 = document.getElementById('link') as HTMLAnchorElement; const alink2 = <HTMLAnchorElement>document.getElementById('link');
abstract class Animal {} class Human extends Animal implements Person { public a: string; protected b: number; private c: boolean;
name = 'CSY'; age = 40; birth = new Date(); sayHi = () => 'Hi';
readonly d: String;
constructor (v: boolean) { super(); this.c = v; };
static isHuman = (o: any) => typeof o === 'object' && o instanceof Human;
get e () { return this.a + this.a } set e (s) { this.a = s.toLowerCase(); } } const son: Human = new Human(true);
interface Co1 { a: number, } interface Co2 { b: string, } type Co = Co1 & Co2; const co0: Co = { a: 12, b: '', };
function print <T> (v: T): void { console.log(v); }
print<number>(10) print<string | boolean>('')
print(1)
function print0 <T extends Array<string> | string[]> (v: T): void { console.log(v); } function print1 <T, K extends keyof T> (v: T, k: K): void { console.log(v[k]); }
interface PrintInterface <T> { do: (v: T) => void }
class PrintClass <T> { value: T; }
type partial = Partial<Person>
type readonly = Readonly<Person>
type pick = Pick<Person, 'name' | 'age'>
type record = Record<'a' | 'b', string>
interface Obj { [K: string]: number, }
type p = { [K in 'x' | 'y' | 'z']: number } type q = { [K in keyof Person]: string }
type props = { a: number }; type typeA = props['a'];
namespace n { export interface Person {};
namespace nn {} } var d: n.Person = {};
declare var jQuery: (selector: string) => any;
|