typespec_rs 0.5.0

A Rust implementation of the TypeSpec type system — parser, checker, and emitter
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
//! TypeSpec Standard Library
//!
//! Ported from TypeSpec compiler/lib/intrinsics.tsp and prototypes.tsp
//!
//! This module defines the built-in types and prototypes for TypeSpec.

pub mod decorator_registry;
pub mod helpers;
pub mod primitives;

pub use decorator_registry::*;
pub use helpers::*;
pub use primitives::*;