chore: fix ts types

This commit is contained in:
GitHub Actions
2024-01-24 17:21:25 +01:00
parent d03b8a2e5a
commit 1a61946065
4 changed files with 34548 additions and 27105 deletions

View File

@@ -97,7 +97,7 @@ class Git {
createTag = (tag: string) => this.exec(`tag -a ${tag} -m "${tag}"`);
async pushNewFiles(files: File[] = []): Promise<any> {
async pushNewFiles(files: File[] = []): Promise<unknown> {
if (!files.length) return;
await this.pull();