UNPKG

@knyt/luthier

Version:

A library for building standardized, type-safe native web components with full SSR and hydration support.

13 lines (12 loc) 425 B
/** * A unique symbol used to indicate that rendering should be skipped. * * @remarks * * This symbol can be used as a sentinel value in scenarios where rendering * needs to be conditionally bypassed. When encountered, it signals that the * rendering process should not proceed for the deferred content. * * @internal scope: workspace */ export const SkipRenderSignal = Symbol.for("knyt.luthier.SkipRenderSignal");