8 lines
209 B
TypeScript
8 lines
209 B
TypeScript
import { GitLabAPIOptions } from './types.mjs';
|
|
|
|
/**
|
|
* Get latest hash from GitHub using API
|
|
*/
|
|
declare function getGitLabRepoHash(options: GitLabAPIOptions): Promise<string>;
|
|
|
|
export { getGitLabRepoHash };
|