vize_canon 0.199.0

Canon - The standard of correctness for Vize type checking
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Scope closure generation for virtual TypeScript.
//!
//! Generates TypeScript closures that mirror Vue's template scope hierarchy,
//! including v-for, v-slot, and event handler scopes. Uses recursive
//! tree-based generation so nested scopes are properly contained.

mod closures;
mod component_props;
mod context;
mod emit;
mod event_handler;
mod globals;

pub(crate) use closures::generate_scope_closures;
pub(crate) use context::ScopeGenerationOptions;