@studiocms/html
Version:
Add HTML Support to your StudioCMS project with ease!
14 lines (13 loc) • 330 B
JavaScript
const symbol = Symbol.for("@studiocms/html");
const shared = (
// @ts-expect-error
globalThis[symbol] || // @ts-expect-error
// biome-ignore lint/suspicious/noAssignInExpressions: This is a valid use case for assignment in expressions.
(globalThis[symbol] = {
htmlConfig: void 0
})
);
export {
shared,
symbol
};