ccshare
Version:
Share Claude Code prompts and results easily
26 lines • 761 B
TypeScript
import { TechStack } from './tech-detector.js';
import { WorkflowItem, AssistantAction, ToolExecution } from './types.js';
export interface HtmlData {
prompts: Array<{
prompt: string;
timestamp?: string;
sourceFile?: string;
}>;
fileDiffs: Array<{
path: string;
diff: string;
}>;
workflow?: WorkflowItem[];
assistantActions?: AssistantAction[];
toolExecutions?: ToolExecution[];
sessionInfo?: {
totalPrompts: number;
timeRange?: string;
sources?: string[];
projectPath?: string;
claudeProjectPath?: string;
};
techStack?: TechStack;
}
export declare function generateHtml(data: HtmlData): string;
//# sourceMappingURL=html-generator.d.ts.map