Files
oh-my-opencode/dist/shared/command-executor/embedded-commands.d.ts
T

8 lines
190 B
TypeScript
Raw Normal View History

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