diff options
author | Ajay <[email protected]> | 2023-02-13 02:31:25 -0500 |
---|---|---|
committer | Ajay <[email protected]> | 2023-02-13 02:31:25 -0500 |
commit | 5859c33ce89ef142e44b1acebfacb964919073ff (patch) | |
tree | 1713c1c1af7b3781d106daa5eda380045848196b /src/popup.ts | |
parent | f4d80d88438ff31bc067ff480fd94112d972718d (diff) | |
download | SponsorBlock-5859c33ce89ef142e44b1acebfacb964919073ff.tar.gz SponsorBlock-5859c33ce89ef142e44b1acebfacb964919073ff.zip |
Move video handing and config to shared library
Diffstat (limited to 'src/popup.ts')
-rw-r--r-- | src/popup.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/popup.ts b/src/popup.ts index f631d7cd..edd4e9e5 100644 --- a/src/popup.ts +++ b/src/popup.ts @@ -7,7 +7,6 @@ import { SponsorHideType, SponsorSourceType, SponsorTime, - StorageChangesObject, } from "./types"; import { GetChannelIDResponse, @@ -28,6 +27,7 @@ import { exportTimes } from "./utils/exporter"; import GenericNotice from "./render/GenericNotice"; import { noRefreshFetchingChaptersAllowed } from "./utils/licenseKey"; import { getFormattedTime } from "@ajayyy/maze-utils/lib/formating"; +import { StorageChangesObject } from "@ajayyy/maze-utils/lib/config"; const utils = new Utils(); |