ai-dev-diary
Version:
Intelligent development diary system for AI-assisted projects
19 lines • 590 B
TypeScript
import { DiaryEntry, EntryType } from './types';
export interface EntryOptions {
type: EntryType;
title: string;
description?: string;
tags?: string[];
author?: string;
aiAgent?: string;
relatedFiles?: string[];
correction?: string;
impact?: string;
}
export declare class EntryBuilder {
build(options: Partial<EntryOptions>): Promise<DiaryEntry>;
createInteractive(): Promise<DiaryEntry>;
private completeOptions;
quickEntry(type: EntryType, title: string, description?: string): DiaryEntry;
}
//# sourceMappingURL=entry-builder.d.ts.map