/** * An {@linkcode Object} with string keys and string or number values * as generated by the TypeScript for an `enum` definition. * * @see https://www.typescriptlang.org/docs/handbook/enums.html * * @since v0.6.0 */ export type Enum = Record; /** * Defines a type of the keys of an {@linkcode Enum}. * * @since v0.6.0 */ export type Member = keyof Enum; /** * Returns the list of enum keys. * * @since v0.6.0 */ export declare function members(value: Enum): Member[];