Files
stats/packages/sdks/astro/src/SetGlobalPropertiesComponent.astro

9 lines
235 B
Plaintext

---
import { filterProps } from './asto-utils';
type Props = Record<string, unknown>;
const props = Astro.props as Props;
---
<script is:inline set:html={`window.op('setGlobalProperties', ${JSON.stringify(filterProps(props))});`} />