export const tokenlessResultWrapping = async (callback: (data: T) => R, data: Promise) => { "use strict"; return callback(await data); }