Skip to main content

ODUtilities interface

under construction

We are still working the API Reference! This page might be incomplete or doesn't contain all details!

Overview

(no description)

View Source

Properties


easterEggs interface api.ODEasterEggs

Object containing data for Open Ticket easter eggs.

View Source


isBeta boolean boolean

Check if you're running a beta version of Open Ticket.

View Source


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!

View Source


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!

View Source


asyncReplace function (text:string, regex:RegExp, func:(value:string, args:any) => Promise) => Promise

Same as string.replace(search, value) but with async compatibility

View Source


dateString function (date:Date) => string

Use this function to create a short date string in the following format: DD/MM/YYYY HH:MM:SS

View Source


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

View Source


moduleInstalled function (id:string) => boolean

Use this function to check if an npm package is installed or not!

View Source


runAsync function (func:() => Promise) => void

Use this function to run a snippet of code asyncronous without creating a separate function for it!

View Source


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.

View Source


timer function (ms:number) => Promise

Use this to wait for a certain amount of milliseconds. This only works when using await

View Source