interface AppNotInstalledBranchController {
    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: NotInstalled;
    ongoingTask: undefined;
    installedVersionId: undefined;
    doesNeedRepairing: boolean;
    lastFailedDataTask: undefined | AppBranchLastFailedDataTaskController;
}

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: NotInstalled
ongoingTask: undefined
installedVersionId: undefined
doesNeedRepairing: boolean
lastFailedDataTask: undefined | AppBranchLastFailedDataTaskController