* feat: Handle privilege escalation gracefully even without PolicyKit * build: upgrade tslint => 5.9.1 * build: add uhk-agent/package-lock.json * feat: add error animation * fix: display agent icon when user use ALT + TAB
11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
export interface CommandLineInputs {
|
|
/**
|
|
* addons menu visible or not
|
|
*/
|
|
addons?: boolean;
|
|
/**
|
|
* simulate privilege escalation error
|
|
*/
|
|
spe?: boolean;
|
|
}
|