UNPKG

@k8ts/instruments

Version:

A collection of utilities and core components for k8ts.

19 lines 462 B
export interface GitTraceOptions { cwd: string; absolute: boolean; } export interface GitTraceProps { commit: { sha: string; message: string; author: string; date: string; }; } export declare class GitTrace { readonly props: GitTraceProps; private constructor(); get text(): string; static make(options?: Partial<GitTraceOptions>): Promise<GitTrace | undefined>; } //# sourceMappingURL=git.d.ts.map