interface AppInstalledBranchController {
    id: string;
    profile: undefined | string;
    uid: string;
    registerMutation: AppBranchRegisterMutation;
    registerAndStartUpdateTaskMutation: AppBranchRegisterAndStartUpdateTaskMutation;
    startUpdateTaskMutation: AppBranchStartUpdateTaskMutation;
    startRepairTaskMutation: AppBranchStartRepairTaskMutation;
    startMoveTaskMutation: AppBranchStartMoveTaskMutation;
    startUninstallTaskMutation: AppBranchStartUninstallTaskMutation;
    startProcessMutation: AppBranchStartProcessMutation;
    isAnyMutationPending: boolean;
    isRegistered: true;
    rootDir: AppBranchRootDirController;
    lastInstalledVersionId: undefined | number;
    status: Installed;
    ongoingTask: undefined;
    installedVersionId: number;
    doesNeedRepairing: false;
    process: undefined | AppBranchProcessController;
}

Hierarchy (view full)

Properties

id: string
profile: undefined | string
uid: string
registerMutation: AppBranchRegisterMutation
registerAndStartUpdateTaskMutation: AppBranchRegisterAndStartUpdateTaskMutation
startUpdateTaskMutation: AppBranchStartUpdateTaskMutation
startRepairTaskMutation: AppBranchStartRepairTaskMutation
startMoveTaskMutation: AppBranchStartMoveTaskMutation
startUninstallTaskMutation: AppBranchStartUninstallTaskMutation
startProcessMutation: AppBranchStartProcessMutation
isAnyMutationPending: boolean
isRegistered
lastInstalledVersionId: undefined | number
status: Installed
ongoingTask: undefined
installedVersionId: number
doesNeedRepairing
process: undefined | AppBranchProcessController