Visualization
    Preparing search index...

    Type Alias MethodKeys<T>

    MethodKeys: { [P in keyof T]: T[P] extends Function ? P : never }[keyof T]

    Extract from T the keys of all properties with function values.

    Type Parameters

    • T