mirror of
https://github.com/the1812/Bilibili-Evolved.git
synced 2025-11-04 21:22:45 +08:00
11 lines
314 B
TypeScript
11 lines
314 B
TypeScript
export enum RegistryUpdateMethod {
|
|
AlwaysReload = '总是自动刷新',
|
|
PreferInstantStyles = '有 instantStyles 时不刷新',
|
|
PreferEntry = 'entry 为空时不刷新',
|
|
DoNotReload = '不自动刷新',
|
|
}
|
|
export enum CoreUpdateMethod {
|
|
AlwaysReload = '自动刷新',
|
|
DoNotReload = '不自动刷新',
|
|
}
|