/** * This is an example of what your code should look like. * The code for this package is nothing but the makeFixture * function. */ import { FullName } from '../types'; import { makeFixture } from '../../index'; export const makeFullNameFixture = (overrides?: Partial) => { const defaults: FullName = { firstName: 'Luke', lastName: 'Skywalker', }; return makeFixture(defaults, overrides); };