mirror of
https://git.unlock-music.dev/um/um-react.git
synced 2025-07-13 04:22:09 +08:00
18 lines
350 B
TypeScript
18 lines
350 B
TypeScript
export interface XimalayaAndroidKey {
|
|
contentKey: string;
|
|
init: number;
|
|
step: number;
|
|
}
|
|
|
|
export const XimalayaX2MKey: XimalayaAndroidKey = {
|
|
contentKey: 'xmly',
|
|
init: 0.615243,
|
|
step: 3.837465,
|
|
};
|
|
|
|
export const XimalayaX3MKey: XimalayaAndroidKey = {
|
|
contentKey: '3989d111aad5613940f4fc44b639b292',
|
|
init: 0.726354,
|
|
step: 3.948576,
|
|
};
|