15 lines
285 B
TypeScript
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;
|
|
} |