electron-ipc-module
    Preparing search index...

    Type Alias MethodsOnly<T>

    MethodsOnly: {
        [K in keyof T as T[K] extends (...args: any[]) => any ? K : never]: T[K]
    }

    Keep only the method-valued properties of T, dropping data fields.

    Type Parameters

    • T