mirror of
https://github.com/asphyxia-core/plugins.git
synced 2026-03-22 01:44:39 -05:00
7 lines
157 B
TypeScript
7 lines
157 B
TypeScript
export function getVersion({ model }: EamuseInfo): number {
|
|
if (model.startsWith('H44')) return 1;
|
|
if (model.startsWith('I44')) return 2;
|
|
|
|
return 0;
|
|
}
|