Typeberry by Fluffy Labs - v0.4.0
    Preparing search index...

    Type Alias PropertyKeys<T>

    PropertyKeys: {
        [K in Extract<keyof T, string>]: T[K] extends Function ? never : K
    }[Extract<keyof T, string>]

    Only keys that contain properties, not methods.

    Type Parameters

    • T