export type Platform = 'pc' | 'mac'; export type KeyDefs = { raw: string; id: string; priority: number; displayName?: string; }; export type PlatformDefs = { NormalizeMap: Partial>; Priority: Partial>; DisplayName: Partial>; }; export type KeyParser = (raw: string) => KeyDefs;