1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
// Copyright (c) Zefchain Labs, Inc. // SPDX-License-Identifier: Apache-2.0 //! Primitive WebAssembly and WIT types. mod array; mod flat_type; mod join_flat_types; mod maybe_flat_type; mod simple_type; pub use self::{ flat_type::FlatType, join_flat_types::JoinFlatTypes, maybe_flat_type::MaybeFlatType, simple_type::SimpleType, };