Page Contents

Home > @loopback/filter > KeyOf

KeyOf type

Key types of a given model, excluding operators

Signature:

export type KeyOf<MT extends object> = Exclude<Extract<keyof MT, string>, Operators>;

References: Operators