mirror of
https://gitlab1.ptb.de/waltem01/Matrix
synced 2024-11-15 01:13:49 +00:00
6 lines
143 B
TypeScript
6 lines
143 B
TypeScript
// Interface to represent a response from the matrix API server
|
|
export interface APIResponse {
|
|
success: boolean;
|
|
results?: Array<unknown>;
|
|
}
|