@ng1005/chrome-extension-common
Version:
chrome扩展通用库--消息与storage
13 lines (12 loc) • 510 B
text/typescript
import StorageDataService from "../storage/StorageDataService"
import StorageLocalService from "../storage/StorageLocalService"
import StorageManagedService from "../storage/StorageManagedService"
import StorageSessionService from "../storage/StorageSessionService"
import StorageSyncService from "../storage/StorageSyncService"
export type StorageType={
data:StorageDataService,
local:StorageLocalService,
managed: StorageManagedService,
session: StorageSessionService,
sync: StorageSyncService,
}