vika-cli 1.4.0

Generate TypeScript types, Zod schemas, and Fetch-based API clients from OpenAPI/Swagger specifications
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
pub mod context;
pub mod react_query;
pub mod swr;

pub use context::HookContext;

/// Represents a generated hook file.
#[derive(Debug, Clone)]
pub struct HookFile {
    pub filename: String,
    pub content: String,
}