UNPKG

628 BTypeScriptView Raw
1export { dd } from 'dumper.js';
2export declare const inspect: (obj: any) => string;
3interface IDecorateRepoPathOptions {
4 reset?: boolean;
5 hyperlink?: boolean;
6 basenameOnly?: boolean;
7}
8export declare function decorateRepoPath(repoPath: string, options?: IDecorateRepoPathOptions): string;
9interface IConfigPrompt {
10 reposDir?: string;
11 authToken?: string;
12 username?: string;
13 server?: string;
14 database?: string;
15 maildrop?: string;
16}
17export declare function promptForConfig(): Promise<IConfigPrompt>;
18export declare function getFileDateByFilenameOrGitAuthorDate(filepath: string): Promise<Date>;