-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsplit.sh
90 lines (65 loc) · 1.68 KB
/
split.sh
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
cat <<EOL >> buffer.d.ts
import {PlatformWithCount} from './index.js';
declare const buffer: PlatformWithCount;
export default buffer;
EOL
cat <<EOL >> facebook.d.ts
import {PlatformWithCount} from './index.js';
declare const facebook: PlatformWithCount;
export default facebook;
EOL
cat <<EOL >> gmail.d.ts
import {Platform} from './index.js';
declare const gmail: Platform;
export default gmail;
EOL
cat <<EOL >> linkedin.d.ts
import {Platform} from './index.js';
declare const linkedin: Platform;
export default linkedin;
EOL
cat <<EOL >> ok.d.ts
import {PlatformWithCount} from './index.js';
declare const ok: PlatformWithCount;
export default ok;
EOL
cat <<EOL >> pinterest.d.ts
import {PlatformWithCount} from './index.js';
declare const pinterest: PlatformWithCount;
export default pinterest;
EOL
cat <<EOL >> reddit.d.ts
import {PlatformWithCount} from './index.js';
declare const reddit: PlatformWithCount;
export default reddit;
EOL
cat <<EOL >> telegram.d.ts
import {Platform} from './index.js';
declare const telegram: Platform;
export default telegram;
EOL
cat <<EOL >> tumblr.d.ts
import {PlatformWithCount} from './index.js';
declare const tumblr: PlatformWithCount;
export default tumblr;
EOL
cat <<EOL >> twitter.d.ts
import {Platform} from './index.js';
declare const twitter: Platform;
export default twitter;
EOL
cat <<EOL >> vk.d.ts
import {PlatformWithCount} from './index.js';
declare const vk: PlatformWithCount;
export default vk;
EOL
cat <<EOL >> weibo.d.ts
import {Platform} from './index.js';
declare const weibo: Platform;
export default weibo;
EOL
cat <<EOL >> xing.d.ts
import {Platform} from './index.js';
declare const xing: Platform;
export default xing;
EOL