interface CurrentPage {
    data: null | Response;
    finishRecognition: () => void;
    startNextPage: () => Promise<void>;
}

Properties

data: null | Response
finishRecognition: () => void
startNextPage: () => Promise<void>