logsdx
Version:
<div align="center"><img alt="logsdx" width="300" src="https://github.com/user-attachments/assets/cc2a3b55-5bfd-44e8-a330-bfa146b50059" /></div>
11 lines (10 loc) • 379 B
TypeScript
import { z } from "zod";
import { styleOptionsSchema, tokenSchema, tokenListSchema } from "./index";
export type StyleOptions = z.infer<typeof styleOptionsSchema>;
export type Token = z.infer<typeof tokenSchema>;
export type TokenList = z.infer<typeof tokenListSchema>;
export type JsonSchemaOptions = {
name?: string;
$description?: string;
description?: string;
};