Files
website/node_modules/@astropub/md/lib/shared.js
2024-05-06 17:15:30 -04:00

12 lines
230 B
JavaScript

export const symbol = Symbol.for('@astropub/md')
export const shared = /** @type {Shared} */ (
globalThis[symbol] || (
globalThis[symbol] = {
markdownConfig: {},
}
)
)
/** @typedef {import('./shared').Shared} Shared */