2024-10-08 01:06:36 +01:00
|
|
|
import Badge from "../entities/Badge";
|
|
|
|
import FunkyArray from "funky-array";
|
|
|
|
import Party from "../entities/Party";
|
|
|
|
import RemoteUser from "../objects/RemoteUser";
|
|
|
|
import User from "../entities/User";
|
|
|
|
import UserParty from "../entities/UserParty";
|
|
|
|
|
|
|
|
export default interface ScriptParameters {
|
|
|
|
badge: Badge | null,
|
|
|
|
user: User,
|
|
|
|
userParty: UserParty | null,
|
|
|
|
party: Party | null,
|
|
|
|
remoteUser: RemoteUser,
|
2024-10-13 12:41:45 +01:00
|
|
|
users: FunkyArray<string, RemoteUser>,
|
|
|
|
key: string
|
2024-10-08 01:06:36 +01:00
|
|
|
}
|