Type Utils
    Preparing search index...

    Type Alias FunctionPropertyNames<T>

    FunctionPropertyNames: {
        [P in keyof T]: T[P] extends (...args: unknown[]) => unknown ? P : never
    }[keyof T]

    Type Parameters

    • T