20 lines
786 B
TypeScript
20 lines
786 B
TypeScript
export declare const PLUGIN_ID = "paperclip.plugin-agent-inbox-config";
|
|
export declare const PLUGIN_VERSION = "0.1.0";
|
|
export declare const SIDEBAR_SLOT_ID = "agent-inbox-config-sidebar";
|
|
export declare const PAGE_SLOT_ID = "agent-inbox-config-page";
|
|
export declare const AGENT_TAB_SLOT_ID = "agent-inbox-tab";
|
|
export declare const EXPORT_NAMES: {
|
|
readonly sidebar: "InboxConfigSidebar";
|
|
readonly page: "InboxConfigPage";
|
|
readonly agentTab: "AgentInboxSettingsTab";
|
|
};
|
|
export declare const DEFAULT_INBOX_CONFIG: {
|
|
statuses: string;
|
|
includeBacklog: boolean;
|
|
projectId: string | null;
|
|
goalId: string | null;
|
|
labelIds: string[];
|
|
query: string | null;
|
|
};
|
|
export type AgentInboxConfig = typeof DEFAULT_INBOX_CONFIG;
|
|
//# sourceMappingURL=constants.d.ts.map
|