mirror of
https://github.com/Tribufu/TribufuJS
synced 2026-08-08 04:11:06 +00:00
17 lines
276 B
TypeScript
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;
|
|
};
|