1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
x10 x10 x10 x10 x10 x10 x115 x23 x10 x10 |
// Imports
import { type Directive, Phase } from "@mizu/internal/engine"
export type * from "@mizu/internal/engine"
/** `*mizu` directive. */
export const _mizu: Directive<{
Name: string
}> = {
name: "*mizu",
phase: Phase.ELIGIBILITY,
execute(this: typeof _mizu, _, element) {
return { state: { $root: element } }
},
}
/** Default exports. */
export default _mizu
|