blob: a96152b70dcd7cb656e6f59090adb1d5b95ea6ac (
plain)
1
2
3
4
5
6
7
8
9
|
type Warning = 'launches-in-existing-process' | 'launches-elsewhere';
export default interface ISplitTunnelingApplication {
absolutepath: string;
name: string;
exec: string;
icon?: string;
warning?: Warning;
}
|