smartuniverse/ts/interfaces/http.interfaces.ts

15 lines
285 B
TypeScript
Raw Normal View History

2019-04-11 15:52:01 +00:00
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;
}