forked from external-repos/squoosh
10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
declare module '@webcomponents/custom-elements';
|
|
|
|
(async function () {
|
|
if (!('customElements' in self)) {
|
|
await import('@webcomponents/custom-elements');
|
|
}
|
|
|
|
require('./init-app.tsx');
|
|
})();
|