mona-dish
    Preparing search index...

    Interface IPromise

    interface IPromise {
        catch(executorFunc: (val: any) => any): IPromise;
        finally(executorFunc: () => void): IPromise;
        then(executorFunc: (val: any) => any): IPromise;
    }
    Index

    Methods