UNPKG

@xmobitea/gn-server-cloudscript-editor

Version:
17 lines (14 loc) 345 B
/* The gameId of this cloud script*/ declare const gameId: string; declare type HandlerFunction = ( args?: any, context?: { userId: string; customTags?: { [key: string]: any }; }, log?: (message: string, data?: any) => void ) => any; declare const handlers: Record< string, HandlerFunction >;