feat(ts): interface InterpreterSettings

This commit is contained in:
karishmas6
2024-06-01 11:34:50 +05:30
parent 3898fb49fd
commit 659f4c506f

12
server/src/types/index.ts Normal file
View File

@@ -0,0 +1,12 @@
import {BrowserType, LaunchOptions} from "playwright";
/**
* Interpreter settings properties including recording parameters.
* @category Types
*/
export interface InterpreterSettings {
maxConcurrency: number;
maxRepeats: number;
debug: boolean;
params?: any;
}