## API Report File for "sparo-lib" > Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/). ```ts /// import * as child_process from 'child_process'; import { GitRepoInfo } from 'git-repo-info'; import { ITerminal } from '@rushstack/terminal'; // Warning: (ae-forgotten-export) The symbol "Constructable" needs to be exported by the entry point index.d.ts // // @alpha export function getFromContainerAsync(clazz: Constructable): Promise; // @alpha export class GitService { // (undocumented) executeGitCommand({ args, workingDirectory }: IExecuteGitCommandParams): child_process.SpawnSyncReturns; // (undocumented) executeGitCommandAndCaptureOutput({ args, workingDirectory }: IExecuteGitCommandParams): string; getBasenameFromUrl(url: string): string; // (undocumented) getBranchRemote(branch: string): string; // (undocumented) getGitConfig(k: string, option?: { dryRun?: boolean; global?: boolean; }): string | undefined; // (undocumented) getGitEmail(): string | undefined; // (undocumented) getGitPathOrThrow(): string; // (undocumented) getGitUser(): string | undefined; // (undocumented) getGitVersion(): [number, number, number] | undefined; // (undocumented) getIsSparseCheckoutMode(): boolean | undefined; // (undocumented) getRepoInfo(): GitRepoInfo; get gitPath(): string | undefined; // (undocumented) hasFile(filename: string, branch: string): boolean; // (undocumented) setGitConfig(k: string, v: string | number | boolean, option?: { dryRun?: boolean; global?: boolean; }): void; // (undocumented) setRecommendConfig(option?: { overwrite?: boolean; dryRun?: boolean; }): void; } // @alpha (undocumented) export type ICollectTelemetryFunction = (data: ITelemetryData) => Promise; // @alpha (undocumented) export interface IExecuteGitCommandParams { // (undocumented) args: string[]; // (undocumented) workingDirectory?: string; } // @public export interface ILaunchOptions { // @internal collectTelemetryAsync?: ICollectTelemetryFunction; } // @alpha (undocumented) export interface ITelemetryData { readonly args: string[]; readonly commandName: string; readonly durationInSeconds: number; readonly endTimestampMs?: number; readonly isRawGitCommand?: boolean; readonly startTimestampMs?: number; } export { ITerminal } // @public export class Sparo { // (undocumented) static launchSparoAsync(launchOptions: ILaunchOptions): Promise; // (undocumented) static launchSparoCIAsync(launchOptions: ILaunchOptions): Promise; } // @alpha export class TerminalService { constructor(); // (undocumented) setIsDebug(value: boolean): void; // (undocumented) setIsVerbose(value: boolean): void; // (undocumented) get terminal(): ITerminal; // (undocumented) writeTaskFooter(): void; // (undocumented) writeTaskHeader(taskTitle: string): void; } // (No @packageDocumentation comment for this package) ```