UNPKG

@qaflag/core

Version:

Base requirements for the QA Flag library

10 lines (8 loc) 207 B
import { PersonaInitOptions } from './persona.interface'; export const Demographic = ( gender: 'male' | 'female' | 'nonbinary' | undefined, age: number, ): PersonaInitOptions => ({ gender, age, });