-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmanifest.ts
More file actions
48 lines (32 loc) · 879 Bytes
/
manifest.ts
File metadata and controls
48 lines (32 loc) · 879 Bytes
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
import { type VersionManifest } from '@ag-grid-devtools/types';
import v31_0_0 from './31.0.0/manifest';
import v31_1_0 from './31.1.0/manifest';
import v31_2_0 from './31.2.0/manifest';
import v31_3_0 from './31.3.0/manifest';
import v32_0_0 from './32.0.0/manifest';
import v32_2_0 from './32.2.0/manifest';
import v33_0_0 from './33.0.0/manifest';
import v33_1_0 from './33.1.0/manifest';
import v33_2_0 from './33.2.0/manifest';
import v33_3_0 from './33.3.0/manifest';
import v34_0_0 from './34.0.0/manifest';
import v34_3_0 from './34.3.0/manifest';
import v35_0_0 from './35.0.0/manifest';
import v35_1_0 from './35.1.0/manifest';
const versions: Array<VersionManifest> = [
v31_0_0,
v31_1_0,
v31_2_0,
v31_3_0,
v32_0_0,
v32_2_0,
v33_0_0,
v33_1_0,
v33_2_0,
v33_3_0,
v34_0_0,
v34_3_0,
v35_0_0,
v35_1_0,
];
export default versions;