| 20 | type Report = (data: any) => void; |
| 21 | |
| 22 | interface RpDef { |
| 23 | run(domainIds: string[], udict: ND, report: Report): Promise<void>; |
| 24 | hidden: boolean; |
| 25 | base: number; |
| 26 | } |
| 27 | |
| 28 | const { log, max, min } = Math; |
| 29 |
no outgoing calls
no test coverage detected