8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
export interface CommandMatch {
|
|
fullMatch: string;
|
|
command: string;
|
|
start: number;
|
|
end: number;
|
|
}
|
|
export declare function findEmbeddedCommands(text: string): CommandMatch[];
|