Files
oh-my-opencode/dist/shared/command-executor/embedded-commands.d.ts
T
2026-03-14 04:56:50 +00:00

8 lines
190 B
TypeScript

export interface CommandMatch {
fullMatch: string;
command: string;
start: number;
end: number;
}
export declare function findEmbeddedCommands(text: string): CommandMatch[];