UNPKG

@synotech/utils

Version:

a collection of utilities for internal use

8 lines (6 loc) 166 B
/** * @module gender * @description A list of gender */ export const gender = ['male', 'female', 'other'] as const; export type Gender = (typeof gender)[number];