smartuniverse/ts/interfaces/http.interfaces.ts
2019-04-11 17:52:01 +02:00

15 lines
285 B
TypeScript

export interface IServerGetMessagesRequestBody {
channel: string;
topic?: string;
youngerThan: number;
}
/**
* the interface for a standard request
*/
export interface IServerPutMessageRequestBody {
channel: string;
passphrase: string;
message: string;
payload: any;
}