/** * Identifier for a systray icon. * * A systray icon is either identified by a (window handle + uid) or * its guid. Since a systray icon can be updated to also include a * guid or window handle/uid later on, a stable ID is useful for * consistently identifying an icon. */ export type SysTrayIconId = { "HandleUid": [number, number]; } | { "Guid": string; }; //# sourceMappingURL=SysTrayIconId.d.ts.map