mirror of
https://github.com/x1xhlol/system-prompts-and-models-of-ai-tools.git
synced 2026-06-17 14:59:35 +00:00
18 lines
411 B
TypeScript
18 lines
411 B
TypeScript
import type { TestModulePermissionAiConfigurable } from "./types"
|
|
|
|
export type {
|
|
TestModulePermissionAction,
|
|
TestModulePermission,
|
|
TestModulePermissionAiConfigurable,
|
|
} from "./types"
|
|
|
|
export type ModulePermissions = TestModulePermissionAiConfigurable
|
|
export type ModuleState = never
|
|
|
|
export type TestIntegration = {
|
|
type: "test"
|
|
name: string
|
|
permissions?: Array<ModulePermissions>
|
|
state?: ModuleState
|
|
}
|