1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
// /// Alpha: [OpenAPI](https://www.openapis.org) language exporter.
// #[cfg(feature = "openapi")]
// #[cfg_attr(docsrs2, doc(cfg(feature = "openapi")))]
// pub mod openapi;
/// [TypeScript](https://www.typescriptlang.org) language exporter.
compile_error!;
/// [JSDoc](https://jsdoc.app) helpers.
///
/// Also requires `typescript` feature to be enabled.
// /// [Rust](https://www.rust-lang.org) language exporter.
// #[cfg(feature = "rust")]
// #[cfg_attr(docsrs2, doc(cfg(feature = "rust")))]
// pub mod rust;
// /// [Swift](https://www.swift.org) language exporter.
// #[cfg(feature = "swift")]
// #[cfg_attr(docsrs2, doc(cfg(feature = "swift")))]
// pub mod swift;
// /// [Kotlin](https://kotlinlang.org) language exporter.
// #[cfg(feature = "kotlin")]
// #[cfg_attr(docsrs2, doc(cfg(feature = "kotlin")))]
// pub mod kotlin;
// /// [Go Lang](https://go.dev) language exporter.
// #[cfg(feature = "go")]
// #[cfg_attr(docsrs2, doc(cfg(feature = "go")))]
// pub mod go;
pub use primitive_def;