/** * The UMD format export file for @mongodb/charts-embed-dom * * For UMD bundles, we want the any exported utilities to also be * accessible on the exported global. * * This file should only be consumed by `webpack.config.js` */ import EmbedSDK, { getRealmUserToken } from '..'; export default class ChartsEmbedSDK extends EmbedSDK { static getRealmUserToken: typeof getRealmUserToken; }