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 getFeed: () => Promise subscribe: (callback) => Promise }