mirror of
https://github.com/heygen-com/hyperframes.git
synced 2026-09-01 19:42:03 +00:00
3 lines
192 B
TypeScript
3 lines
192 B
TypeScript
/** Matches the opening tag of a composition root element (e.g. `<div data-composition-id="main">`). */
|
|
export const COMPOSITION_ROOT_OPEN_TAG_RE = /<[^>]*data-composition-id="[^"]+"[^>]*>/i;
|