diff options
Diffstat (limited to 'persistence/index.ts')
| -rw-r--r-- | persistence/index.ts | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/persistence/index.ts b/persistence/index.ts new file mode 100644 index 0000000..f809246 --- /dev/null +++ b/persistence/index.ts @@ -0,0 +1,19 @@ +export { + HollowdarkAudioCache, + HollowdarkContentCache, + HollowdarkUserData, + type CachedAudioTrack, + type CachedContentChunk, + type CachedManifest, + type Setting +} from './db' + +export { + AUDIO_CACHE_DB_NAME, + AUDIO_CACHE_SCHEMA_V1, + CONTENT_CACHE_DB_NAME, + CONTENT_CACHE_SCHEMA_V1, + SCHEMA_VERSION, + USER_DATA_DB_NAME, + USER_DATA_SCHEMA_V1 +} from './schema' |
