13 lines
241 B
TypeScript
13 lines
241 B
TypeScript
import type { StartStop } from './StartStop';
|
|
export type DesiredStatus = {
|
|
main: 'stopped';
|
|
} | {
|
|
main: 'restarting';
|
|
restartAgain: boolean;
|
|
} | {
|
|
main: 'running';
|
|
} | {
|
|
main: 'backing-up';
|
|
onComplete: StartStop;
|
|
};
|