Types
StatsPostBody
StatsPostBody
export type StatsPostBody = {
message: string;
}
StatsPostCallback
StatsPostCallback
export type StatsPostCallback = (result: StatsPostResult) => void | Promise<void>;
StatsPostResult
StatsPostResult
export type StatsPostResult = {
statusCode: number;
body: StatsPostBody;
message: string;
}
Review
Review
export interface Review {
content: string;
stars: number;
userId: string;
botId: string;
}
IntervalPreset
IntervalPreset
export enum IntervalPreset {
Default,
Safe,
SuperSafe,
ExtraSafe,
SuperOmegaSafe
}
Last updated