webserver-framework/@types/Other.ts

50 lines
1.2 KiB
TypeScript
Raw Normal View History

2023-04-17 13:10:45 +02:00
import { LoggerClientOptions } from '@navy.gif/logger';
2023-04-19 23:33:47 +02:00
export type FileExtensions = 'mp4' | 'png' | 'mkv' | 'mov' | 'wmv' | 'm4v' | 'webm' | 'gif' | 'jpg' | 'exe' | 'avi' | 'webp' | 'jpeg' | 'htm' | 'zip' | 'txt';
export type FileType = 'video' | 'image' | 'audio' | 'text' | 'application' | 'message' | 'multipart';
2023-04-17 13:10:45 +02:00
export type DiscordOptions = {
//
}
type MariaDBOptions = {
load: boolean,
client: {
waitForConnections: boolean,
connectionLimit: number,
supportBigNumbers: boolean,
bigNumberStrings: boolean,
multipleStatements: boolean,
collation: string
},
cluster: {
canRetry: boolean,
removeNodeErrorCount: number,
restoreNodeTimeout: number,
defaultSelector: string
},
loggerOptions: LoggerClientOptions
}
type MongoDBOptions = {
load: boolean,
client: object,
loggerOptions: LoggerClientOptions
}
export type DatabaseOptions = {
mariadb: MariaDBOptions,
mongodb: MongoDBOptions
}
export type SignupCode = {
[key:string]: unknown,
code: string,
created: number,
validFor: number,
}
export type IPCMessage = {
_id?: string,
[key: string]: string | number | object | undefined
}