mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 09:56:01 +00:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
export default function getElectron() {
|
|
if (window['require']) {
|
|
const electron = window['require']('electron');
|
|
return electron;
|
|
}
|
|
return null;
|
|
}
|