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