TribufuJS/src/http.ts
Guilherme Werner 5047dada7c Improve api
- TribufuApi
- TribufuBot
- TribufuClient
- TribufuServer
2023-12-31 23:44:13 -03:00

17 lines
276 B
TypeScript

// Copyright (c) Tribufu. All Rights Reserved.
export type HeaderMap = {
[key: string]: string
};
export type CookieMap = {
[key: string]: string;
};
export interface ErrorResponse {
error: string;
};
export interface MessageResponse {
message: string;
};