@graphteon/juricode
Version:
We are forging the future with lines of digital steel
17 lines (16 loc) • 471 B
TypeScript
export interface Repository {
id: number;
full_name: string;
stargazers_count: number;
link_header?: string;
}
export interface ConversationResponse {
status: string;
conversation_id: string;
}
export declare class RepositoryService {
private baseUrl;
constructor();
getRepositories(): Promise<Repository[]>;
createConversation(repoFullName: string, initialMessage?: string, imageUrls?: string[]): Promise<ConversationResponse>;
}