| 12345678910111213 |
- import { Raid, Signup, Character, RaidData } from "../../Types/Types"
-
- export type ShoutMessage = {
- message: string,
- sender: string,
- date: string
- }
-
- export class IShoutbox{
- shout: (uuid:string, msg: ShoutMessage) => Promise<void>
- getFeed: () => Promise<ShoutMessage[]>
- subscribe: (callback) => Promise<string>
- }
|