major bug fixes & breaking change in database code
Major bug fixes and improvements have been made. There's also a breaking change for plugins using the database system. All database related functions are now async based.
This commit is contained in:
@@ -9,6 +9,12 @@ import { ODConsoleWarningMessage, ODDebugger } from "./console"
|
||||
*/
|
||||
export type ODPromiseVoid = void|Promise<void>
|
||||
|
||||
/**## ODOptionalPromise `type`
|
||||
* This is a simple type to represent a type as normal value or a promise value.
|
||||
*/
|
||||
export type ODOptionalPromise<T> = T|Promise<T>
|
||||
|
||||
|
||||
/**## ODValidButtonColor `type`
|
||||
* This is a collection of all the possible button colors.
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user