| 4 | import { PageSize, Orientation } from './page'; |
| 5 | |
| 6 | interface BaseProps { |
| 7 | id?: string; |
| 8 | fixed?: boolean; |
| 9 | break?: boolean; |
| 10 | debug?: boolean; |
| 11 | minPresenceAhead?: number; |
| 12 | } |
| 13 | |
| 14 | type DynamicRenderCallback = (props: { |
| 15 | pageNumber: number; |
nothing calls this directly
no outgoing calls
no test coverage detected