ngify
    Preparing search index...

    Type Alias PickMethod<T>

    PickMethod: Omit<T, keyof PickProperty<T>>

    Exclude properties from T

    PickMethod<{ x: string, y: () => void }> -> { y: () => void }
    

    Type Parameters

    • T