1 | 'use strict'
|
2 |
|
3 | class BaseTelegramDataSource {
|
4 | |
5 |
|
6 |
|
7 | get api() { throw 'Not implemented' }
|
8 |
|
9 | |
10 |
|
11 |
|
12 | get router() { throw 'Not implemented' }
|
13 |
|
14 | |
15 |
|
16 |
|
17 | get logger() { throw 'Not implemented' }
|
18 |
|
19 | |
20 |
|
21 |
|
22 | get scopeExtensions() { throw 'Not implemented' }
|
23 |
|
24 | |
25 |
|
26 |
|
27 | get sessionStorage() { throw 'Not implemented' }
|
28 |
|
29 | |
30 |
|
31 |
|
32 | get localization() { throw 'Not implemented' }
|
33 |
|
34 | |
35 |
|
36 |
|
37 | get ipc() { throw 'Not implemented' }
|
38 | }
|
39 |
|
40 | module.exports = BaseTelegramDataSource |
\ | No newline at end of file |