MCPcopy Create free account
hub / github.com/AsyncFuncAI/deepwiki-open / ProcessedProject

Interface ProcessedProject

src/hooks/useProcessedProjects.ts:3–11  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1import { useState, useEffect } from 'react';
2
3interface ProcessedProject {
4 id: string;
5 owner: string;
6 repo: string;
7 name: string;
8 repo_type: string;
9 submittedAt: number;
10 language: string;
11}
12
13export function useProcessedProjects() {
14 const [projects, setProjects] = useState<ProcessedProject[]>([]);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected