2024-02-21 13:56:19 -05:00
|
|
|
## API Report File for "sparo-lib"
|
|
|
|
|
|
|
|
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
|
|
|
|
|
|
```ts
|
|
|
|
|
2024-02-21 13:57:36 -05:00
|
|
|
/// <reference types="node" />
|
|
|
|
|
|
|
|
import * as child_process from 'child_process';
|
|
|
|
import { GitRepoInfo } from 'git-repo-info';
|
|
|
|
|
|
|
|
// Warning: (ae-forgotten-export) The symbol "Constructable" needs to be exported by the entry point index.d.ts
|
|
|
|
//
|
|
|
|
// @alpha
|
|
|
|
export function getFromContainer<T>(clazz: Constructable<T>): Promise<T>;
|
|
|
|
|
|
|
|
// @alpha
|
|
|
|
export class GitService {
|
|
|
|
// (undocumented)
|
2024-02-20 20:25:44 -05:00
|
|
|
executeGitCommand({ args, workingDirectory }: IExecuteGitCommandParams): child_process.SpawnSyncReturns<string>;
|
2024-02-21 13:57:36 -05:00
|
|
|
// (undocumented)
|
2024-02-20 20:25:44 -05:00
|
|
|
executeGitCommandAndCaptureOutput({ args, workingDirectory }: IExecuteGitCommandParams): string;
|
2024-02-21 13:57:36 -05:00
|
|
|
// (undocumented)
|
|
|
|
getBasenameFromUrl(url: 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)
|
2024-02-20 20:25:44 -05:00
|
|
|
hasFile(filename: string, branch: string): boolean;
|
|
|
|
// (undocumented)
|
2024-02-21 13:57:36 -05:00
|
|
|
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<void>;
|
|
|
|
|
|
|
|
// @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;
|
|
|
|
}
|
|
|
|
|
2024-02-21 13:56:19 -05:00
|
|
|
// @public
|
|
|
|
export class Sparo {
|
|
|
|
// (undocumented)
|
2024-02-21 13:57:36 -05:00
|
|
|
static launchSparoAsync(launchOptions: ILaunchOptions): Promise<void>;
|
2024-02-21 13:56:19 -05:00
|
|
|
// (undocumented)
|
2024-02-21 13:57:36 -05:00
|
|
|
static launchSparoCIAsync(launchOptions: ILaunchOptions): Promise<void>;
|
2024-02-21 13:56:19 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
// (No @packageDocumentation comment for this package)
|
|
|
|
|
|
|
|
```
|