@nospamproxy/core
    Preparing search index...

    Type Alias PropertyNames<TObject>

    PropertyNames: {
        [Key in keyof TObject]: TObject[Key] extends Function ? never : Key
    }[keyof TObject]

    Type Parameters

    • TObject