Plants vs. Zombies: Replanted - v1.0.3
    Preparing search index...

    Interface IUnavailableReason

    Indicates why a deployment method is unavailable an if it can be made to work

    interface IUnavailableReason {
        description: (t: any) => string;
        fixCallback?: (api: IExtensionApi) => Bluebird<void>;
        order?: number;
        solution?: (t: any) => string;
    }
    Index

    Properties

    description: (t: any) => string

    description (english) why the deployment method is unavailable

    fixCallback?: (api: IExtensionApi) => Bluebird<void>

    if the problem can be fixed automatically, this can be set to a function that takes care of it

    order?: number

    When no method is supported, Vortex will offer possible solutions in this order. It should indicate both how much effort the solution is and also a general preference for this deployment methods so that the preferred method has a lower order number than others.

    solution?: (t: any) => string

    describes the solution to make this