Interface memorizeMultiCore_Signature

interface memorizeMultiCore_Signature {
    <V, ARGS>(fn, weak_ref?): {
        fn: ((...args) => V);
        memory: typeof StrongTree;
    };
    <V, ARGS>(fn, weak_ref): {
        fn: ((...args) => V);
        memory: typeof HybridTree;
    };
}

Generated using TypeDoc