mirror of
https://github.com/TheFunny/ArisuAutoSweeper
synced 2025-12-23 14:25:27 +00:00
23 lines
404 B
TypeScript
23 lines
404 B
TypeScript
import type {OptionItem} from '/#/config';
|
|
|
|
export const repositoryMap = {
|
|
china: 'cn',
|
|
global: 'global',
|
|
};
|
|
|
|
export const repositoryValueMap = {
|
|
[repositoryMap.global]: 'global',
|
|
[repositoryMap.china]: 'china',
|
|
};
|
|
|
|
export const repositoryList: OptionItem[] = [
|
|
{
|
|
value: repositoryMap.china,
|
|
label: '中国大陆',
|
|
},
|
|
{
|
|
value: repositoryMap.global,
|
|
label: '全球',
|
|
},
|
|
];
|