705c75e3c7
Additionally, we are making superLoad.json accept a new "immediateCallback" parameter that resolves during the event handler (and not after)
9 lines
275 B
TypeScript
9 lines
275 B
TypeScript
import { WokaList } from "../Messages/JsonMessages/PlayerTextures";
|
|
|
|
export interface WokaServiceInterface {
|
|
/**
|
|
* Returns the list of all available Wokas for the current user.
|
|
*/
|
|
getWokaList(roomId: string, token: string): Promise<WokaList | undefined>;
|
|
}
|