8 lines
217 B
TypeScript
8 lines
217 B
TypeScript
/**
|
|
* Global type declarations for the docmd browser runtime,
|
|
* used in Playwright page.evaluate() contexts.
|
|
*/
|
|
|
|
declare const docmd: {
|
|
call: (action: string, payload: Record<string, unknown>) => Promise<any>;
|
|
}; |