commonConst.ts (4060c00a75883036bbd315fb25c90065209312b3) | commonConst.ts (cfa0fc0757dad620cd0b0533a949d86b17086d32) |
---|---|
1export const internalSymbolKey = Symbol.for('$'); 2export const internalSerialzeKey = '$'; 3export const tabName = { 4 music: '单曲', 5 album: '专辑', 6 artist: '作者', 7}; 8 --- 9 unchanged lines hidden (view full) --- 18 /** 全部结束 */ 19 FINISHED = 5, 20} 21 22export const StorageKeys = { 23 MediaMeta: 'media-meta-keys', 24 MediaCache: 'media-cache', 25}; | 1export const internalSymbolKey = Symbol.for('$'); 2export const internalSerialzeKey = '$'; 3export const tabName = { 4 music: '单曲', 5 album: '专辑', 6 artist: '作者', 7}; 8 --- 9 unchanged lines hidden (view full) --- 18 /** 全部结束 */ 19 FINISHED = 5, 20} 21 22export const StorageKeys = { 23 MediaMeta: 'media-meta-keys', 24 MediaCache: 'media-cache', 25}; |
26 27export const CacheControl = { 28 Cache: 'cache', 29 NoCache: 'no-cache', 30 NoStore: 'no-store', 31}; |
|