Right
This commit is contained in:
parent
7e92798513
commit
a32769ce43
14
js/bdapi.js
14
js/bdapi.js
|
@ -10,41 +10,41 @@
|
||||||
|
|
||||||
|
|
||||||
//Returns currrent BrowserWindow https://github.com/atom/electron/blob/master/docs/api/browser-window.md
|
//Returns currrent BrowserWindow https://github.com/atom/electron/blob/master/docs/api/browser-window.md
|
||||||
BdApi.prototype.getBrowserWindow = function() {
|
BdApi.getBrowserWindow = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//Joins a server
|
//Joins a server
|
||||||
//code = server invite code
|
//code = server invite code
|
||||||
BdApi.prototype.joinServer = function(code) {
|
BdApi.joinServer = function(code) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//Inject CSS to document head
|
//Inject CSS to document head
|
||||||
//id = id of element
|
//id = id of element
|
||||||
//css = custom css
|
//css = custom css
|
||||||
BdApi.prototype.injectCSS = function(id, css) {
|
BdApi.injectCSS = function(id, css) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//Clear css/remove any element
|
//Clear css/remove any element
|
||||||
//id = id of element
|
//id = id of element
|
||||||
BdApi.prototype.clearCSS = function(id) {
|
BdApi.clearCSS = function(id) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//Get another plugin
|
//Get another plugin
|
||||||
//name = name of plugin
|
//name = name of plugin
|
||||||
BdApi.prototype.getPlugin = function(name) {
|
BdApi.getPlugin = function(name) {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//Get ipc for reason
|
//Get ipc for reason
|
||||||
BdApi.prototype.getIpc = function() {
|
BdApi.getIpc = function() {
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
//Get BetterDiscord Core
|
//Get BetterDiscord Core
|
||||||
BdApi.prototype.getCore = function() {
|
BdApi.getCore = function() {
|
||||||
|
|
||||||
};
|
};
|
Loading…
Reference in New Issue