initial framework

This commit is contained in:
2026-02-11 21:05:26 +00:00
parent 1df6c91109
commit f318513b2f
17 changed files with 1754 additions and 63 deletions

20
types.d.ts vendored Normal file
View File

@@ -0,0 +1,20 @@
interface GCIAPIResult {
count: number;
next: null | number;
previous: null | number;
results: GCIResult[];
}
interface GCIResult {
id: string;
shortlink: string | null;
name: string;
url: string;
}
interface APIResult {
error?: boolean;
payload: string;
}
export { GCIAPIResult, APIResult };