14 lines
371 B
TypeScript
14 lines
371 B
TypeScript
/*
|
|
* Copyright (C) SapphireCode - All Rights Reserved
|
|
* This file is part of Snippeteer which is released under BSD-3-Clause.
|
|
* See file 'LICENSE' for full license details.
|
|
* Created by Timo Hocker <timo@scode.ovh>, May 2020
|
|
*/
|
|
|
|
export class DialogHandler {
|
|
public static catch (): void {
|
|
// eslint-disable-next-line no-process-exit
|
|
process.exit ();
|
|
}
|
|
}
|