Files
oh-my-opencode/dist/hooks/auto-update-checker/checker/plugin-entry.d.ts
T

8 lines
221 B
TypeScript
Raw Normal View History

export interface PluginEntryInfo {
entry: string;
isPinned: boolean;
pinnedVersion: string | null;
configPath: string;
}
export declare function findPluginEntry(directory: string): PluginEntryInfo | null;