Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

Interface.ts 336B

12345678910111213
  1. import { Raid, Signup, Character, RaidData } from "../../Types/Types"
  2. export type ShoutMessage = {
  3. message: string,
  4. sender: string,
  5. date: string
  6. }
  7. export class IShoutbox{
  8. shout: (uuid:string, msg: ShoutMessage) => Promise<void>
  9. getFeed: () => Promise<ShoutMessage[]>
  10. subscribe: (callback) => Promise<string>
  11. }