We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
DECL
Sometimes your type might look like this:
pub struct Color { r: i8, g: i8, b: i8, }
but you want a custom serde impl + string representation in TypeScript:
serde
// So it can look like #abcdef export type Color = `#${string}{string}{string}`
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Sometimes your type might look like this:
but you want a custom
serde
impl + string representation in TypeScript:The text was updated successfully, but these errors were encountered: