fantasia-archive/interfaces/I_faDevToolsControl.ts
2023-09-12 21:20:26 +02:00

26 lines
439 B
TypeScript

export interface I_faDevToolsControl {
/**
* Check the current state of the DevTools in the opened FA instance
*/
checkDecToolsStatus: () => boolean
/**
* Toggles the dev tools
* - If they are opened, close them
* - If they are closed, open them
*/
toggleDevTools: () => void
/**
* Opens the dev tools
*/
openDevTools: () => void
/**
* Closes the dev tools
*/
closeDevTools: () => void
}