Matrix/Webserver/src/lib/interfaces.ts

6 lines
143 B
TypeScript
Raw Normal View History

2022-08-07 17:41:57 +00:00
// Interface to represent a response from the matrix API server
export interface APIResponse {
success: boolean;
2024-02-22 09:37:00 +00:00
results?: Array<unknown>;
}