mirror of
https://github.com/murashit/codex-panel.git
synced 2026-07-22 06:57:10 +00:00
12 lines
869 B
TypeScript
12 lines
869 B
TypeScript
// GENERATED CODE! DO NOT MODIFY BY HAND!
|
|
|
|
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
|
import type { CommandMigration } from "./CommandMigration";
|
|
import type { HookMigration } from "./HookMigration";
|
|
import type { McpServerMigration } from "./McpServerMigration";
|
|
import type { PluginsMigration } from "./PluginsMigration";
|
|
import type { SessionMigration } from "./SessionMigration";
|
|
import type { SkillMigration } from "./SkillMigration";
|
|
import type { SubagentMigration } from "./SubagentMigration";
|
|
|
|
export type MigrationDetails = { plugins: Array<PluginsMigration>, skills: Array<SkillMigration>, sessions: Array<SessionMigration>, mcpServers: Array<McpServerMigration>, hooks: Array<HookMigration>, subagents: Array<SubagentMigration>, commands: Array<CommandMigration>, memory?: Array<string>, };
|