UNPKG

typed-adventureland

Version:
11 lines (10 loc) 294 B
export type CodeMessageEvent<T> = { /** The name of the character who sent the message */ name: string; /** The message sent */ message: T; /** The date the message was sent */ date: Date; /** Whether the message was sent locally */ local: boolean; };