-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.ts
More file actions
66 lines (49 loc) · 1.05 KB
/
interfaces.ts
File metadata and controls
66 lines (49 loc) · 1.05 KB
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
interface User {
readonly dbId: number
email: string,
userId: number,
googleId?: string,
startTrail(): string,
getCoupon(couponname: string, value: number): number
}
const hamid: User = {
dbId: 0,
email: "ali@gmail.com",
userId: 3,
googleId: "dhde3",
startTrail: (): string => {
return "trial started"
},
getCoupon: (name: "hamid10", off: 10) => {
return 10
}
}
hamid.email = "new@gmail.com"
// hamid.dbId=033
// interface vs type
interface TakePhoto {
cameraMode: string
filter: string
brust: number
}
interface Story {
createStory(): void
}
class instagram implements TakePhoto {
constructor(
public cameraMode: string,
public filter: string,
public brust: number,
) { }
}
class Youtube implements TakePhoto {
constructor(
public cameraMode: string,
public filter: string,
public brust: number,
public short: string
) { }
createStory(): void {
console.log("Story was created ")
}
}