refactor: make getLatestExecution public

This commit is contained in:
Derrick Hammer 2023-07-13 04:05:34 -04:00
parent 2281fa8f35
commit 93ab07c5c3
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -171,7 +171,7 @@ export default abstract class BaseClient {
}
}
protected async getLatestExecution(): Promise<ExecutionInfo | null> {
async getLatestExecution(): Promise<ExecutionInfo | null> {
await this._sync();
const getExecInfo = (u: OptimisticUpdate) => {