-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathlanguageData.ts
More file actions
64 lines (63 loc) · 1.12 KB
/
languageData.ts
File metadata and controls
64 lines (63 loc) · 1.12 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
import { ProductKey } from '../types';
import { LanguageData } from './types';
export default {
platform: {
javascript: '2.21',
nodejs: '2.21',
typescript: '2.21',
react: '2.21',
csharp: '1.2',
flutter: '1.2',
java: '1.6',
kotlin: '1.6',
objc: '1.2',
php: '1.1',
python: '3.1',
ruby: '1.2',
swift: '1.2',
go: '1.3',
},
pubsub: {
javascript: '2.21',
nodejs: '2.21',
typescript: '2.21',
react: '2.21',
csharp: '1.2',
flutter: '1.2',
java: '1.6',
kotlin: '1.6',
objc: '1.2',
php: '1.1',
python: '3.1',
ruby: '1.2',
swift: '1.2',
go: '1.3',
laravel: '1.0',
},
chat: {
javascript: '1.3',
react: '1.3',
swift: '1.2',
kotlin: '1.2',
android: '1.2',
},
aiTransport: {
javascript: '2.21',
react: '2.21',
java: '1.6',
python: '3.1',
swift: '1.2',
},
spaces: {
javascript: '0.5',
react: '0.5',
},
liveObjects: {
javascript: '2.21',
swift: '0.4',
java: '1.6',
},
liveSync: {
javascript: '0.4',
},
} satisfies Partial<Record<ProductKey, LanguageData>>;