UNPKG

cyrus-ai

Version:

AI-powered Linear issue automation using Claude

21 lines 487 B
import type { EdgeConfig } from "cyrus-core"; /** * Linear credentials obtained from OAuth flow */ export interface LinearCredentials { linearToken: string; linearWorkspaceId: string; linearWorkspaceName: string; } /** * Workspace information for issue processing */ export interface Workspace { path: string; isGitWorktree: boolean; } /** * Re-export EdgeConfig from cyrus-core for convenience */ export type { EdgeConfig }; //# sourceMappingURL=types.d.ts.map