mirror of
https://github.com/wukko/cobalt.git
synced 2024-11-15 12:50:01 +00:00
7 lines
266 B
TypeScript
7 lines
266 B
TypeScript
|
declare module "@imput/version-info" {
|
||
|
export function getCommit(): Promise<string | undefined>;
|
||
|
export function getBranch(): Promise<string | undefined>;
|
||
|
export function getRemote(): Promise<string>;
|
||
|
export function getVersion(): Promise<string>;
|
||
|
}
|