1 | import { InitResult } from '../../../typings';
|
2 | export declare class InitSummary implements InitResult {
|
3 | readonly bare: boolean;
|
4 | readonly path: string;
|
5 | readonly existing: boolean;
|
6 | readonly gitDir: string;
|
7 | constructor(bare: boolean, path: string, existing: boolean, gitDir: string);
|
8 | }
|
9 | export declare function parseInit(bare: boolean, path: string, text: string): InitSummary;
|