Calling methods from same file

This commit is contained in:
Sankalp Kotewar 2022-12-06 10:08:26 +00:00 committed by GitHub
parent a76826ef46
commit d6e98d9302
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 0 deletions

View File

@ -5,4 +5,6 @@ async function restore(): Promise<void> {
await run(new StateOutputSetter());
}
restore();
export default restore;

View File

@ -5,4 +5,6 @@ async function restoreOnly(): Promise<void> {
await run(new NonStateOutputSetter());
}
restoreOnly();
export default restoreOnly;