ODUtilities interface
We are still working the API Reference! This page might be incomplete or doesn't contain all details!
Overview
(no description)
Properties
easterEggs
interface ➜ api.ODEasterEggs
Object containing data for Open Ticket easter eggs.
isBeta
boolean ➜ boolean
Check if you're running a beta version of Open Ticket.
ODVersionMigration
function ➜ (version:api.ODVersion, func:() => void|Promise, afterInitFunc:() => void|Promise) => api.ODVersionMigration
This class is used to manage data migration between Open Ticket versions.
It shouldn't be used by plugins because this is an internal API feature!
project
type ➜ "openticket"
This is the name of the project you are currently in.
Developers can use this to create a multi-plugin compatible with all bots supporting the open-discord
framework!
asyncReplace
function ➜ (text:string, regex:RegExp, func:(value:string, args:any) => Promise) => Promise
Same as string.replace(search, value)
but with async compatibility
dateString
function ➜ (date:Date) => string
Use this function to create a short date string in the following format: DD/MM/YYYY HH:MM:SS
emojiTitle
function ➜ (emoji:string, text:string) => string
Use this function to create a title with an emoji before/after the text. The style & divider are set in opendiscord.defaults
moduleInstalled
function ➜ (id:string) => boolean
Use this function to check if an npm package is installed or not!
runAsync
function ➜ (func:() => Promise) => void
Use this function to run a snippet of code asyncronous without creating a separate function for it!
timedAwait
function ➜ (promise:ReturnValue, timeout:number, onError:(err:Error) => void) => ReturnValue
Use this function to await a promise but reject after the certain timeout has been reached.
timer
function ➜ (ms:number) => Promise
Use this to wait for a certain amount of milliseconds. This only works when using await