(fn: Function, props: Set<string>)
| 625 | } |
| 626 | |
| 627 | function memoProps(fn: Function, props: Set<string>): Set<string> { |
| 628 | (fn as any)[kPropNamesSymbol] = props |
| 629 | return props |
| 630 | } |
| 631 | |
| 632 | interface PropsParserOptions { |
| 633 | sourceError?: Error | undefined |