mirror of
https://github.com/johndoe6345789/metabuilder.git
synced 2026-04-24 13:54:57 +00:00
docs: types,packages,nextjs (2 files)
This commit is contained in:
@@ -42,7 +42,7 @@ Import example:
|
||||
"description": "",
|
||||
"author": "Anonymous",
|
||||
"category": "other",
|
||||
"icon": "📦",
|
||||
"icon": "package",
|
||||
"screenshots": [],
|
||||
"tags": [],
|
||||
"dependencies": [],
|
||||
|
||||
13
frontends/nextjs/src/components/nerd-mode-ide/types.ts
Normal file
13
frontends/nextjs/src/components/nerd-mode-ide/types.ts
Normal 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
|
||||
}
|
||||
Reference in New Issue
Block a user