(caseName: string)
| 97 | let ordinal = 0; |
| 98 | |
| 99 | export function setActiveReportCase(caseName: string): void { |
| 100 | activeCaseName = caseName; |
| 101 | activeCaseStorage.enterWith(caseName); |
| 102 | } |
| 103 | |
| 104 | export function getActiveReportCase(): string | undefined { |
| 105 | return activeCaseStorage.getStore() ?? activeCaseName; |
no outgoing calls