@xmobitea/gn-server-cloudscript-editor
Version:
GearN Server Cloudscript Editor by XmobiTea (Pro)
17 lines (14 loc) • 345 B
TypeScript
/* 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
>;