fix(core): update

This commit is contained in:
2019-04-11 17:52:01 +02:00
parent f512acdfaa
commit f728c56016
12 changed files with 74 additions and 33 deletions
+15
View File
@@ -0,0 +1,15 @@
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;
}