ODCheckerStorage class
We are still working the API Reference! This page might be incomplete or doesn't contain all details!
Overview
This is an Open Ticket checker storage.
It stores temporary data to share between config checkers!
(e.g. The messages.json
needs to access the "id"
from options.json
)
You can use this class when you create your own config checker implementation! (not required for using the built-in config checker)
Properties
storage
array ➜ {key:string, source:api.ODId, value:any}[]
This is the array that stores all the data. ❌ (don't edit unless really needed!)
Methods
constructor()
function ➜ api.ODCheckerStorage
(no description)
delete()
function ➜ boolean
Delete data from the database (source
=> id of ODChecker
)
View Parameters (2)
source
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.key
: string ➜string
- Parameter Description Lorem Ipsum.
get()
function ➜ any
Get data from the database (source
=> id of ODChecker
)
View Parameters (2)
source
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.key
: string ➜string
- Parameter Description Lorem Ipsum.
reset()
function ➜ void
Reset the entire database
set()
function ➜ boolean
Add data to the database (source
=> id of ODChecker
). This function also overwrites existing data!
View Parameters (3)
source
: type ➜api.ODValidId
- Parameter Description Lorem Ipsum.key
: string ➜string
- Parameter Description Lorem Ipsum.value
: type ➜any
- Parameter Description Lorem Ipsum.
Defaults
We're still working on this part of the documentation!
Examples
We're still working on this part of the documentation!