mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
9 lines
189 B
TypeScript
9 lines
189 B
TypeScript
export type ModulePermissions = never
|
|
export type ModuleState = never
|
|
|
|
export type FsIntegration = {
|
|
type: "fs"
|
|
name: string
|
|
permissions?: Array<ModulePermissions>
|
|
state?: ModuleState
|
|
} |