Skip to content

Commit

Permalink
Make an internal observer() soft-deprecated in the browser script
Browse files Browse the repository at this point in the history
  • Loading branch information
yhatt committed Feb 10, 2023
1 parent 601b63d commit 0b30a63
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion src/browser.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
import { applyCustomElements } from './custom-elements/browser'
import { observer } from './observer'
export { observer }

/**
* @internal
* @deprecated
*/
const exportedObserver = observer
export { exportedObserver as observer }

const marpCoreBrowserScript = Symbol()

Expand Down

0 comments on commit 0b30a63

Please sign in to comment.