docs: types,packages,nextjs (2 files)

This commit is contained in:
2025-12-26 00:31:07 +00:00
parent 0df3ed36c3
commit e920d3d967
2 changed files with 14 additions and 1 deletions

View File

@@ -42,7 +42,7 @@ Import example:
"description": "",
"author": "Anonymous",
"category": "other",
"icon": "📦",
"icon": "package",
"screenshots": [],
"tags": [],
"dependencies": [],

View File

@@ -0,0 +1,13 @@
export interface GitConfig {
provider: 'github' | 'gitlab'
token: string
repoUrl: string
branch: string
}
export interface TestResult {
name: string
status: 'passed' | 'failed' | 'pending'
duration?: number
error?: string
}