chore: include pre-built dist for github install
This commit is contained in:
+18
@@ -0,0 +1,18 @@
|
||||
/**
|
||||
* Detects external plugins that may conflict with oh-my-opencode features.
|
||||
* Used to prevent crashes from concurrent notification plugins.
|
||||
*/
|
||||
export interface ExternalNotifierResult {
|
||||
detected: boolean;
|
||||
pluginName: string | null;
|
||||
allPlugins: string[];
|
||||
}
|
||||
/**
|
||||
* Detect if any external notification plugin is configured.
|
||||
* Returns information about detected plugins for logging/warning.
|
||||
*/
|
||||
export declare function detectExternalNotificationPlugin(directory: string): ExternalNotifierResult;
|
||||
/**
|
||||
* Generate a warning message for users with conflicting notification plugins.
|
||||
*/
|
||||
export declare function getNotificationConflictWarning(pluginName: string): string;
|
||||
Reference in New Issue
Block a user