@mtkruto/node 0.1.500 → 0.1.700
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/esm/3_types.d.ts +6 -1
- package/esm/3_types.js +6 -1
- package/esm/4_errors.js +2 -4
- package/esm/5_client.d.ts +1 -1
- package/esm/5_client.js +1 -1
- package/esm/client/0_params.d.ts +33 -7
- package/esm/client/0_storage_operations.d.ts +182 -0
- package/esm/client/0_storage_operations.js +611 -0
- package/esm/client/1_composer.d.ts +2 -0
- package/esm/client/1_composer.js +28 -0
- package/{script/client/0_types.d.ts → esm/client/1_types.d.ts} +3 -3
- package/{script/client/1_account_manager.d.ts → esm/client/2_account_manager.d.ts} +1 -1
- package/{script/client/1_bot_info_manager.d.ts → esm/client/2_bot_info_manager.d.ts} +1 -1
- package/esm/client/{1_business_connection_manager.d.ts → 2_business_connection_manager.d.ts} +1 -1
- package/{script/client/1_file_manager.d.ts → esm/client/2_file_manager.d.ts} +6 -2
- package/esm/client/{1_file_manager.js → 2_file_manager.js} +55 -52
- package/esm/client/{1_network_statistics_manager.d.ts → 2_network_statistics_manager.d.ts} +1 -1
- package/{script/client/1_reaction_manager.d.ts → esm/client/2_reaction_manager.d.ts} +1 -1
- package/{script/client/1_update_manager.d.ts → esm/client/2_update_manager.d.ts} +1 -1
- package/esm/client/{2_message_manager.d.ts → 3_message_manager.d.ts} +2 -2
- package/esm/client/3_video_chat_manager.d.ts +43 -0
- package/esm/client/3_video_chat_manager.js +194 -0
- package/esm/client/{3_callback_query_manager.d.ts → 4_callback_query_manager.d.ts} +2 -2
- package/esm/client/{3_callback_query_manager.js → 4_callback_query_manager.js} +1 -0
- package/{script/client/3_chat_list_manager.d.ts → esm/client/4_chat_list_manager.d.ts} +6 -6
- package/esm/client/{3_chat_list_manager.js → 4_chat_list_manager.js} +75 -98
- package/esm/client/{3_inline_query_manager.d.ts → 4_inline_query_manager.d.ts} +2 -2
- package/esm/client/{3_inline_query_manager.js → 4_inline_query_manager.js} +1 -0
- package/esm/client/{3_story_manager.d.ts → 4_story_manager.d.ts} +3 -3
- package/{script/client/4_client.d.ts → esm/client/5_client.d.ts} +105 -31
- package/esm/client/{4_client.js → 5_client.js} +172 -73
- package/esm/connection/0_connection.d.ts +6 -15
- package/esm/connection/0_connection.js +1 -38
- package/esm/connection/1_connection_web_socket.d.ts +3 -2
- package/esm/connection/1_connection_web_socket.js +7 -3
- package/esm/mod.d.ts +1 -1
- package/esm/mod.js +1 -1
- package/esm/storage/0_storage.d.ts +9 -145
- package/esm/storage/0_storage.js +1 -526
- package/esm/storage/2_storage_indexed_db.d.ts +3 -2
- package/esm/storage/2_storage_indexed_db.js +9 -8
- package/esm/storage/2_storage_local_storage.d.ts +3 -2
- package/esm/storage/2_storage_local_storage.js +5 -4
- package/esm/storage/2_storage_memory.d.ts +4 -4
- package/esm/storage/2_storage_memory.js +12 -19
- package/esm/storage/2_storage_session_storage.d.ts +2 -1
- package/esm/storage/2_storage_session_storage.js +5 -4
- package/esm/tl/3_utilities.d.ts +1 -1
- package/esm/tl/3_utilities.js +3 -3
- package/esm/types/0_birthday.d.ts +27 -0
- package/esm/types/0_birthday.js +26 -0
- package/esm/types/0_giveaway_parameters.d.ts +1 -1
- package/esm/types/0_id.d.ts +1 -1
- package/esm/types/0_live_stream_channel.d.ts +30 -0
- package/esm/types/0_live_stream_channel.js +26 -0
- package/esm/types/0_opening_hours.d.ts +25 -0
- package/esm/types/0_opening_hours.js +25 -0
- package/esm/types/0_video_chat.d.ts +60 -0
- package/esm/types/0_video_chat.js +53 -0
- package/esm/types/1_chat_p.d.ts +4 -0
- package/esm/types/1_chat_p.js +1 -0
- package/esm/types/2_business_connection.d.ts +6 -0
- package/esm/types/2_chat.d.ts +62 -0
- package/esm/types/2_chat.js +66 -0
- package/esm/types/2_inactive_chat.d.ts +1 -1
- package/esm/types/2_invite_link.d.ts +1 -1
- package/esm/types/2_message_reaction_count.d.ts +1 -1
- package/esm/types/2_message_reactions.d.ts +1 -1
- package/esm/types/3_chat_member_updated.d.ts +1 -1
- package/esm/types/4_message.d.ts +3 -3
- package/esm/types/5_chat_list_item.d.ts +35 -0
- package/esm/types/5_chat_list_item.js +86 -0
- package/esm/types/6_update.d.ts +14 -5
- package/esm/types/_file_id.d.ts +1 -0
- package/esm/utilities/0_bigint.d.ts +1 -0
- package/esm/utilities/0_bigint.js +7 -3
- package/package.json +1 -1
- package/script/3_types.d.ts +6 -1
- package/script/3_types.js +6 -1
- package/script/4_errors.js +2 -4
- package/script/5_client.d.ts +1 -1
- package/script/5_client.js +1 -1
- package/script/client/0_params.d.ts +33 -7
- package/script/client/0_storage_operations.d.ts +182 -0
- package/script/client/0_storage_operations.js +615 -0
- package/script/client/1_composer.d.ts +2 -0
- package/script/client/1_composer.js +28 -0
- package/{esm/client/0_types.d.ts → script/client/1_types.d.ts} +3 -3
- package/{esm/client/1_account_manager.d.ts → script/client/2_account_manager.d.ts} +1 -1
- package/{esm/client/1_bot_info_manager.d.ts → script/client/2_bot_info_manager.d.ts} +1 -1
- package/script/client/{1_business_connection_manager.d.ts → 2_business_connection_manager.d.ts} +1 -1
- package/{esm/client/1_file_manager.d.ts → script/client/2_file_manager.d.ts} +6 -2
- package/script/client/{1_file_manager.js → 2_file_manager.js} +54 -51
- package/script/client/{1_network_statistics_manager.d.ts → 2_network_statistics_manager.d.ts} +1 -1
- package/{esm/client/1_reaction_manager.d.ts → script/client/2_reaction_manager.d.ts} +1 -1
- package/{esm/client/1_update_manager.d.ts → script/client/2_update_manager.d.ts} +1 -1
- package/script/client/{2_message_manager.d.ts → 3_message_manager.d.ts} +2 -2
- package/script/client/3_video_chat_manager.d.ts +43 -0
- package/script/client/3_video_chat_manager.js +198 -0
- package/script/client/{3_callback_query_manager.d.ts → 4_callback_query_manager.d.ts} +2 -2
- package/script/client/{3_callback_query_manager.js → 4_callback_query_manager.js} +1 -0
- package/{esm/client/3_chat_list_manager.d.ts → script/client/4_chat_list_manager.d.ts} +6 -6
- package/script/client/{3_chat_list_manager.js → 4_chat_list_manager.js} +72 -95
- package/script/client/{3_inline_query_manager.d.ts → 4_inline_query_manager.d.ts} +2 -2
- package/script/client/{3_inline_query_manager.js → 4_inline_query_manager.js} +1 -0
- package/script/client/{3_story_manager.d.ts → 4_story_manager.d.ts} +3 -3
- package/{esm/client/4_client.d.ts → script/client/5_client.d.ts} +105 -31
- package/script/client/{4_client.js → 5_client.js} +192 -93
- package/script/connection/0_connection.d.ts +6 -15
- package/script/connection/0_connection.js +0 -41
- package/script/connection/1_connection_web_socket.d.ts +3 -2
- package/script/connection/1_connection_web_socket.js +7 -3
- package/script/mod.d.ts +1 -1
- package/script/mod.js +1 -1
- package/script/storage/0_storage.d.ts +9 -145
- package/script/storage/0_storage.js +0 -528
- package/script/storage/2_storage_indexed_db.d.ts +3 -2
- package/script/storage/2_storage_indexed_db.js +9 -8
- package/script/storage/2_storage_local_storage.d.ts +3 -2
- package/script/storage/2_storage_local_storage.js +5 -4
- package/script/storage/2_storage_memory.d.ts +4 -4
- package/script/storage/2_storage_memory.js +12 -19
- package/script/storage/2_storage_session_storage.d.ts +2 -1
- package/script/storage/2_storage_session_storage.js +5 -4
- package/script/tl/3_utilities.d.ts +1 -1
- package/script/tl/3_utilities.js +3 -3
- package/script/types/0_birthday.d.ts +27 -0
- package/script/types/0_birthday.js +30 -0
- package/script/types/0_giveaway_parameters.d.ts +1 -1
- package/script/types/0_id.d.ts +1 -1
- package/script/types/0_live_stream_channel.d.ts +30 -0
- package/script/types/0_live_stream_channel.js +30 -0
- package/script/types/0_opening_hours.d.ts +25 -0
- package/script/types/0_opening_hours.js +29 -0
- package/script/types/0_video_chat.d.ts +60 -0
- package/script/types/0_video_chat.js +57 -0
- package/script/types/1_chat_p.d.ts +4 -0
- package/script/types/1_chat_p.js +1 -0
- package/script/types/2_business_connection.d.ts +6 -0
- package/script/types/2_chat.d.ts +62 -0
- package/script/types/2_chat.js +70 -0
- package/script/types/2_inactive_chat.d.ts +1 -1
- package/script/types/2_invite_link.d.ts +1 -1
- package/script/types/2_message_reaction_count.d.ts +1 -1
- package/script/types/2_message_reactions.d.ts +1 -1
- package/script/types/3_chat_member_updated.d.ts +1 -1
- package/script/types/4_message.d.ts +3 -3
- package/script/types/5_chat_list_item.d.ts +35 -0
- package/script/types/5_chat_list_item.js +94 -0
- package/script/types/6_update.d.ts +14 -5
- package/script/types/_file_id.d.ts +1 -0
- package/script/utilities/0_bigint.d.ts +1 -0
- package/script/utilities/0_bigint.js +7 -3
- package/esm/types/5_chat.d.ts +0 -59
- package/esm/types/5_chat.js +0 -126
- package/script/types/5_chat.d.ts +0 -59
- package/script/types/5_chat.js +0 -134
- /package/esm/{3_storage.d.ts → 2_storage.d.ts} +0 -0
- /package/esm/{3_storage.js → 2_storage.js} +0 -0
- /package/esm/client/{0_types.js → 1_types.js} +0 -0
- /package/esm/client/{1_account_manager.js → 2_account_manager.js} +0 -0
- /package/esm/client/{1_bot_info_manager.js → 2_bot_info_manager.js} +0 -0
- /package/esm/client/{1_business_connection_manager.js → 2_business_connection_manager.js} +0 -0
- /package/esm/client/{1_network_statistics_manager.js → 2_network_statistics_manager.js} +0 -0
- /package/esm/client/{1_reaction_manager.js → 2_reaction_manager.js} +0 -0
- /package/esm/client/{1_update_manager.js → 2_update_manager.js} +0 -0
- /package/esm/client/{2_message_manager.js → 3_message_manager.js} +0 -0
- /package/esm/client/{3_story_manager.js → 4_story_manager.js} +0 -0
- /package/script/{3_storage.d.ts → 2_storage.d.ts} +0 -0
- /package/script/{3_storage.js → 2_storage.js} +0 -0
- /package/script/client/{0_types.js → 1_types.js} +0 -0
- /package/script/client/{1_account_manager.js → 2_account_manager.js} +0 -0
- /package/script/client/{1_bot_info_manager.js → 2_bot_info_manager.js} +0 -0
- /package/script/client/{1_business_connection_manager.js → 2_business_connection_manager.js} +0 -0
- /package/script/client/{1_network_statistics_manager.js → 2_network_statistics_manager.js} +0 -0
- /package/script/client/{1_reaction_manager.js → 2_reaction_manager.js} +0 -0
- /package/script/client/{1_update_manager.js → 2_update_manager.js} +0 -0
- /package/script/client/{2_message_manager.js → 3_message_manager.js} +0 -0
- /package/script/client/{3_story_manager.js → 4_story_manager.js} +0 -0
|
@@ -18,68 +18,6 @@
|
|
|
18
18
|
* along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
19
19
|
*/
|
|
20
20
|
import { MaybePromise } from "../1_utilities.js";
|
|
21
|
-
import { AnyEntity, enums, ReadObject, TLObject, types } from "../2_tl.js";
|
|
22
|
-
import { DC } from "../3_transport.js";
|
|
23
|
-
export declare const K: {
|
|
24
|
-
connection: {
|
|
25
|
-
P: (string: string) => string;
|
|
26
|
-
apiId: () => StorageKeyPart[];
|
|
27
|
-
};
|
|
28
|
-
session: {
|
|
29
|
-
P: (string: string) => string;
|
|
30
|
-
serverSalt: () => StorageKeyPart[];
|
|
31
|
-
};
|
|
32
|
-
auth: {
|
|
33
|
-
P: (string: string) => string;
|
|
34
|
-
dc: () => StorageKeyPart[];
|
|
35
|
-
key: () => StorageKeyPart[];
|
|
36
|
-
accountId: () => StorageKeyPart[];
|
|
37
|
-
accountType: () => StorageKeyPart[];
|
|
38
|
-
};
|
|
39
|
-
updates: {
|
|
40
|
-
P: (string: string) => string;
|
|
41
|
-
state: () => StorageKeyPart[];
|
|
42
|
-
all: () => StorageKeyPart[];
|
|
43
|
-
updates: (boxId: bigint) => StorageKeyPart[];
|
|
44
|
-
update: (boxId: bigint, id: bigint) => StorageKeyPart[];
|
|
45
|
-
channelPts: (channelId: bigint) => StorageKeyPart[];
|
|
46
|
-
};
|
|
47
|
-
cache: {
|
|
48
|
-
P: (string: string) => string;
|
|
49
|
-
usernames: () => StorageKeyPart[];
|
|
50
|
-
username: (v: string) => StorageKeyPart[];
|
|
51
|
-
peers: () => StorageKeyPart[];
|
|
52
|
-
peer: (id: number) => StorageKeyPart[];
|
|
53
|
-
stickerSetNames: () => StorageKeyPart[];
|
|
54
|
-
stickerSetName: (id: bigint, accessHash: bigint) => StorageKeyPart[];
|
|
55
|
-
files: () => StorageKeyPart[];
|
|
56
|
-
file: (fileId: bigint) => StorageKeyPart[];
|
|
57
|
-
fileParts: () => StorageKeyPart[];
|
|
58
|
-
filePart: (fileId: bigint, n: number) => StorageKeyPart[];
|
|
59
|
-
customEmojiDocuments: () => StorageKeyPart[];
|
|
60
|
-
customEmojiDocument: (id: bigint) => StorageKeyPart[];
|
|
61
|
-
businessConnections: () => StorageKeyPart[];
|
|
62
|
-
businessConnection: (id: string) => StorageKeyPart[];
|
|
63
|
-
inlineQueryAnswers: () => StorageKeyPart[];
|
|
64
|
-
inlineQueryAnswer: (userId: number, chatId: number, query: string, offset: string) => StorageKeyPart[];
|
|
65
|
-
callbackQueryAnswers: () => StorageKeyPart[];
|
|
66
|
-
callbackQueryAnswer: (chatId: number, messageId: number, question: string) => StorageKeyPart[];
|
|
67
|
-
};
|
|
68
|
-
messages: {
|
|
69
|
-
P: (string: string) => string;
|
|
70
|
-
messages: (chatId: number) => StorageKeyPart[];
|
|
71
|
-
message: (chatId: number, messageId: number) => StorageKeyPart[];
|
|
72
|
-
allMessageRefs: () => StorageKeyPart[];
|
|
73
|
-
messageRef: (messageId: number) => StorageKeyPart[];
|
|
74
|
-
};
|
|
75
|
-
chatlists: {
|
|
76
|
-
P: (string: string) => string;
|
|
77
|
-
hasAllChats: (listId: number) => StorageKeyPart[];
|
|
78
|
-
chats: (listId: number) => StorageKeyPart[];
|
|
79
|
-
chat: (listId: number, chatId: number) => StorageKeyPart[];
|
|
80
|
-
pinnedChats: (listId: number) => StorageKeyPart[];
|
|
81
|
-
};
|
|
82
|
-
};
|
|
83
21
|
export type StorageKeyPart = string | number | bigint;
|
|
84
22
|
export type GetManyFilter = {
|
|
85
23
|
prefix: readonly StorageKeyPart[];
|
|
@@ -87,90 +25,16 @@ export type GetManyFilter = {
|
|
|
87
25
|
start: readonly StorageKeyPart[];
|
|
88
26
|
end: readonly StorageKeyPart[];
|
|
89
27
|
};
|
|
90
|
-
export
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
abstract getMany<T>(prefix: GetManyFilter, params?: {
|
|
28
|
+
export interface Storage {
|
|
29
|
+
initialize(): MaybePromise<void>;
|
|
30
|
+
set(key: readonly StorageKeyPart[], value: unknown): MaybePromise<void>;
|
|
31
|
+
incr(key: readonly StorageKeyPart[], by: number): MaybePromise<void>;
|
|
32
|
+
get<T>(key: readonly StorageKeyPart[]): MaybePromise<T | null>;
|
|
33
|
+
getMany<T>(prefix: GetManyFilter, params?: {
|
|
97
34
|
limit?: number;
|
|
98
35
|
reverse?: boolean;
|
|
99
36
|
}): MaybePromise<Generator<[readonly StorageKeyPart[], T]> | AsyncGenerator<[readonly StorageKeyPart[], T]>>;
|
|
100
|
-
|
|
101
|
-
|
|
102
|
-
|
|
103
|
-
setDc(dc: DC | null): Promise<void>;
|
|
104
|
-
getDc(): MaybePromise<DC | null>;
|
|
105
|
-
getAuthKey(): Promise<Uint8Array | null>;
|
|
106
|
-
setAuthKey(authKey: Uint8Array | null): Promise<void>;
|
|
107
|
-
get authKeyId(): bigint | null;
|
|
108
|
-
exportAuthString(apiId_?: number | null): Promise<string>;
|
|
109
|
-
importAuthString(string: string): Promise<void>;
|
|
110
|
-
getChannelAccessHash(id: number): Promise<bigint | null>;
|
|
111
|
-
getUserAccessHash(id: number): Promise<bigint | null>;
|
|
112
|
-
updateUsernames(id: number, usernames: string[]): Promise<void>;
|
|
113
|
-
getUsername(username: string): Promise<[number, Date] | null>;
|
|
114
|
-
setTlObject(key: readonly StorageKeyPart[], value: TLObject | null): Promise<void>;
|
|
115
|
-
getTlObject(keyOrBuffer: TLObject | Uint8Array | readonly StorageKeyPart[]): Promise<ReadObject | null>;
|
|
116
|
-
setState(state: enums.updates.State): Promise<void>;
|
|
117
|
-
getState(): Promise<enums.updates.State | null>;
|
|
118
|
-
setMessage(chatId: number, messageId: number, message: enums.Message | null): Promise<void>;
|
|
119
|
-
deleteMessages(): Promise<void>;
|
|
120
|
-
getMessageChat(messageId: number): MaybePromise<number | null>;
|
|
121
|
-
getMessage(chatId: number, messageId: number): Promise<enums.Message | null>;
|
|
122
|
-
getLastMessage(chatId: number): Promise<enums.Message | null>;
|
|
123
|
-
setChannelPts(channelId: bigint, pts: number): Promise<void>;
|
|
124
|
-
getChannelPts(channelId: bigint): MaybePromise<number | null>;
|
|
125
|
-
setEntity(entity: AnyEntity): Promise<void>;
|
|
126
|
-
getEntity(key: number): Promise<ReadObject | null>;
|
|
127
|
-
setAccountId(accountId: number): Promise<void>;
|
|
128
|
-
getAccountId(): Promise<number | null>;
|
|
129
|
-
setAccountType(type: "user" | "bot"): Promise<void>;
|
|
130
|
-
getAccountType(): Promise<"user" | "bot" | null>;
|
|
131
|
-
updateStickerSetName(id: bigint, accessHash: bigint, name: string): Promise<void>;
|
|
132
|
-
getStickerSetName(id: bigint, accessHash: bigint): MaybePromise<[string, Date] | null>;
|
|
133
|
-
setServerSalt(serverSalt: bigint): Promise<void>;
|
|
134
|
-
getServerSalt(): MaybePromise<bigint | null>;
|
|
135
|
-
setChat(listId: number, chatId: number, pinned: number, topMessageId: number, topMessageDate: Date): Promise<void>;
|
|
136
|
-
getChats(listId: number): Promise<{
|
|
137
|
-
chatId: number;
|
|
138
|
-
pinned: number;
|
|
139
|
-
topMessageId: number;
|
|
140
|
-
topMessageDate: Date;
|
|
141
|
-
}[]>;
|
|
142
|
-
removeChats(listId: number): Promise<void>;
|
|
143
|
-
setHasAllChats(listId: number, hasAllChats: boolean): Promise<void>;
|
|
144
|
-
hasAllChats(listId: number): Promise<boolean>;
|
|
145
|
-
setPinnedChats(listId: number, chatIds: number[] | null): Promise<void>;
|
|
146
|
-
getPinnedChats(listId: number): Promise<number[] | null>;
|
|
147
|
-
getHistory(chatId: number, offsetId: number, limit: number): Promise<enums.Message[]>;
|
|
148
|
-
getFile(id: bigint): Promise<[number, number] | null>;
|
|
149
|
-
iterFileParts(id: bigint, partCount: number, offset: number): AsyncGenerator<Uint8Array>;
|
|
150
|
-
saveFilePart(id: bigint, index: number, bytes: Uint8Array): Promise<void>;
|
|
151
|
-
setFilePartCount(id: bigint, partCount: number, chunkSize: number): Promise<void>;
|
|
152
|
-
setCustomEmojiDocument(id: bigint, document: types.Document): Promise<void>;
|
|
153
|
-
getCustomEmojiDocument(id: bigint): Promise<[types.Document, Date] | null>;
|
|
154
|
-
setBusinessConnection(id: string, connection: types.BotBusinessConnection | null): Promise<void>;
|
|
155
|
-
getBusinessConnection(id: string): Promise<types.BotBusinessConnection | null>;
|
|
156
|
-
setInlineQueryAnswer(userId: number, chatId: number, query: string, offset: string, results: types.messages.BotResults, date: Date): Promise<void>;
|
|
157
|
-
getInlineQueryAnswer(userId: number, chatId: number, query: string, offset: string): Promise<[types.messages.BotResults, Date] | null>;
|
|
158
|
-
setCallbackQueryAnswer(chatId: number, messageId: number, question: string, answer: types.messages.BotCallbackAnswer): Promise<void>;
|
|
159
|
-
getCallbackQueryAnswer(chatId: number, messageId: number, question: string): Promise<[types.messages.BotCallbackAnswer, Date] | null>;
|
|
160
|
-
setUpdate(boxId: bigint, update: enums.Update): Promise<void>;
|
|
161
|
-
deleteUpdates(): Promise<void>;
|
|
162
|
-
getFirstUpdate(boxId: bigint): Promise<[readonly StorageKeyPart[], enums.Update] | null>;
|
|
163
|
-
assertUser(source: string): Promise<void>;
|
|
164
|
-
assertBot(source: string): Promise<void>;
|
|
165
|
-
deleteFiles(): Promise<void>;
|
|
166
|
-
deleteCustomEmojiDocuments(): Promise<void>;
|
|
167
|
-
deleteBusinessConnections(): Promise<void>;
|
|
168
|
-
deleteInlineQueryAnswers(): Promise<void>;
|
|
169
|
-
deleteCallbackQueryAnswers(): Promise<void>;
|
|
170
|
-
deleteStickerSetNames(): Promise<void>;
|
|
171
|
-
deletePeers(): Promise<void>;
|
|
172
|
-
deleteUsernames(): Promise<void>;
|
|
173
|
-
clear(): Promise<void>;
|
|
174
|
-
setApiId(apiId: number): Promise<void>;
|
|
175
|
-
getApiId(): Promise<number | null>;
|
|
37
|
+
branch(id: string): Storage;
|
|
38
|
+
supportsFiles: boolean;
|
|
39
|
+
mustSerialize: boolean;
|
|
176
40
|
}
|