Creating Plot Twists
    Preparing search index...

    Type Alias CallbackMethods<T>

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

    Extracts method names from a type that are functions. Used to type-check callback method references.

    Type Parameters

    • T