UNPKG

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