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"); } }