6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
|
import { GitTarget } from '../types';
|
||
|
export declare function getInfo({ isFromContainer, cwd, }: {
|
||
|
isFromContainer: boolean;
|
||
|
cwd?: string;
|
||
|
}): Promise<GitTarget | null>;
|