mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-18 15:29:36 +00:00
9 lines
201 B
TypeScript
9 lines
201 B
TypeScript
export type ModulePermissions = never
|
|
export type ModuleState = never
|
|
|
|
export type HelpdocsIntegration = {
|
|
type: "helpdocs"
|
|
name: string
|
|
permissions?: Array<ModulePermissions>
|
|
state?: ModuleState
|
|
} |