(fn: Function, options: FixturePropsOptions)
| 618 | } |
| 619 | |
| 620 | export function configureProps(fn: Function, options: FixturePropsOptions): void { |
| 621 | Object.defineProperty(fn, kPropsSymbol, { |
| 622 | value: options, |
| 623 | enumerable: false, |
| 624 | }) |
| 625 | } |
| 626 | |
| 627 | function memoProps(fn: Function, props: Set<string>): Set<string> { |
| 628 | (fn as any)[kPropNamesSymbol] = props |
no outgoing calls
no test coverage detected