mirror of
https://github.com/oxen-io/session-desktop.git
synced 2023-12-14 02:12:57 +01:00
9 lines
162 B
TypeScript
9 lines
162 B
TypeScript
let shouldQuitFlag = false;
|
|
|
|
export function windowMarkShouldQuit() {
|
|
shouldQuitFlag = true;
|
|
}
|
|
|
|
export function windowShouldQuit() {
|
|
return shouldQuitFlag;
|
|
}
|