/**
 * Type of all keys.
 * To get the keys of an object or array, use the `keyof` keyword.
 * This is just a convenient type as `keyof any` is not obvious.
 */
export type KeyTypes = keyof any;
//# sourceMappingURL=KeyTypes.d.ts.map