Types
StatsPostBody
StatsPostBodyexport type StatsPostBody = {
message: string;
}StatsPostCallback
StatsPostCallbackexport type StatsPostCallback = (result: StatsPostResult) => void | Promise<void>;StatsPostResult
StatsPostResultexport type StatsPostResult = {
statusCode: number;
body: StatsPostBody;
message: string;
}Review
Reviewexport interface Review {
content: string;
stars: number;
userId: string;
botId: string;
}IntervalPreset
IntervalPresetLast updated