24 lines
458 B
JavaScript
24 lines
458 B
JavaScript
export class IStorage {
|
|
// 基础操作
|
|
async get(key) {
|
|
throw new Error("Not implemented");
|
|
}
|
|
async set(key, value) {
|
|
throw new Error("Not implemented");
|
|
}
|
|
async remove(key) {
|
|
throw new Error("Not implemented");
|
|
}
|
|
async clear() {
|
|
throw new Error("Not implemented");
|
|
}
|
|
|
|
// 频道数据
|
|
async getGroups() {
|
|
throw new Error("Not implemented");
|
|
}
|
|
async getChannels() {
|
|
throw new Error("Not implemented");
|
|
}
|
|
}
|