chore: import upstream snapshot with attribution

This commit is contained in:
wehub-resource-sync
2026-07-13 12:44:30 +08:00
commit c6c54b0172
139 changed files with 20366 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
export type ActionType = 'file' | 'shell';
export interface BaseAction {
content: string;
}
export interface FileAction extends BaseAction {
type: 'file';
filePath: string;
}
export interface ShellAction extends BaseAction {
type: 'shell';
}
export type BoltAction = FileAction | ShellAction;
export type BoltActionData = BoltAction | BaseAction;
+4
View File
@@ -0,0 +1,4 @@
export interface BoltArtifactData {
id: string;
title: string;
}
+8
View File
@@ -0,0 +1,8 @@
export interface ITerminal {
readonly cols?: number;
readonly rows?: number;
reset: () => void;
write: (data: string) => void;
onData: (cb: (data: string) => void) => void;
}
+1
View File
@@ -0,0 +1 @@
export type Theme = 'dark' | 'light';