We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab8eb3b commit a590459Copy full SHA for a590459
src/libraries/Executor.ts
@@ -232,7 +232,8 @@ class Executor {
232
username: options.username,
233
mysql: {
234
version: this.version,
235
- versionIsInstalledOnSystem: this.versionInstalledOnSystem
+ versionIsInstalledOnSystem: this.versionInstalledOnSystem,
236
+ xPluginIsEnabled: xStartedSuccessfully
237
},
238
stop: () => {
239
return new Promise(async (resolve, reject) => {
types/index.ts
@@ -55,7 +55,8 @@ export type MySQLDB = {
55
username: string,
56
57
version: string,
58
- versionIsInstalledOnSystem: boolean
+ versionIsInstalledOnSystem: boolean,
59
+ xPluginIsEnabled: boolean
60
61
stop: () => Promise<void>
62
}
0 commit comments