| 1 | import IStackData from "./IStackData"; |
| 2 | |
| 3 | interface IStackDataList { |
| 4 | inputHexes: string[]; |
| 5 | main: IStackData[]; |
| 6 | alt: IStackData[]; |
| 7 | flow: boolean[]; |
| 8 | altFlow: boolean[]; |
| 9 | isStackFailed: boolean; |
| 10 | errorMessage?: string; |
| 11 | } |
| 12 | |
| 13 | export default IStackDataList; |
nothing calls this directly
no outgoing calls
no test coverage detected