/* 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
>;
