1 | declare function createArchive(ref: string): Promise<any>;
|
2 | declare function githubRepository(): Promise<any>;
|
3 | declare function readCommit(commit: string): Promise<{
|
4 | branch: string | undefined;
|
5 | ref: string | undefined;
|
6 | message: string | undefined;
|
7 | }>;
|
8 | export { createArchive, githubRepository, readCommit, };
|