Here are
30 public repositories
matching this topic...
JSON Schema Type Builder with Static Type Resolution for TypeScript
Updated
May 3, 2022
TypeScript
Unbearably fast O(1) runtime type-checking in pure Python.
Updated
Jun 5, 2022
Python
Runtime introspection and unit testing of SwiftUI views
Updated
May 30, 2022
Swift
Typing-toolbox for Python 3 _and_ 2.7 w.r.t. PEP 484.
Updated
Dec 19, 2021
Python
Transform runtypes type to jsverify arbitrary for generate sample of data
Updated
Aug 25, 2017
TypeScript
trycast parses JSON-like values whose shape is defined by TypedDicts and other standard Python type hints.
Updated
Jun 5, 2022
Python
The medieval language held together by twine.
A python 3 library providing functions and decorators to automatically generate class code, such as constructor body or properties getters/setters along with optional support of validation contracts on the generated setters. Its objective is to reduce the amount of copy/paste code in your classes - and hence to help reducing human mistakes :).
Updated
Apr 19, 2021
Python
A simple runtime JSON type checker.
Updated
Mar 27, 2022
TypeScript
Android Application which will intensify your current mood. 😔 ➡️ 😄
Updated
Oct 31, 2018
Java
Typed Web Services for NodeJS
Updated
Mar 7, 2022
TypeScript
JSON object validation for typescript
Updated
Dec 14, 2020
TypeScript
A minimalist runtime type checking utility for duck typing
Updated
Feb 23, 2018
JavaScript
Declarative static and runtime type checking with Flow
Updated
Apr 19, 2018
JavaScript
Typed is a lighweight library that aims to add typings at runtime for typescript projects.
Updated
Mar 29, 2022
TypeScript
thread safe mutableArray(使用 runtime 交换底层实现方法,从而避免奔溃)
Updated
May 28, 2019
Objective-C
A tiny general purpose runtime check library for js and ts.
Updated
Apr 10, 2022
JavaScript
Higher-order contracts and runtime schema checking for JavaScript
Updated
Jan 15, 2022
JavaScript
A Typescript-safe runtime type check function
Updated
May 16, 2022
TypeScript
Facilitates using beartype runtime type-checking with the AWS SDK.
Updated
May 28, 2022
Python
Updated
May 29, 2021
TypeScript
Typescript runtime object type assertion
Updated
Aug 11, 2021
TypeScript
For runtime type declaration and type checking in plain javascript.
Updated
Jun 5, 2018
JavaScript
A simple, convenient way to represent domain objects, leverage domain knowledge, and add runtime validation in your code base.
Updated
Feb 2, 2022
TypeScript
Constructor sugar with types checking
Updated
Feb 5, 2020
JavaScript
(Concept) Invisible static type checker for JavaScript
A set of classes and utilities for JavaScript type inspection and validation.
Updated
Feb 13, 2022
TypeScript
Demo using `ts-interface-builder/macro`
Updated
Dec 9, 2021
TypeScript
Simplified approach to OADA formats that actually uses JSON Schema
Updated
May 31, 2022
TypeScript
Improve this page
Add a description, image, and links to the
runtime-typechecking
topic page so that developers can more easily learn about it.
Curate this topic
Add this topic to your repo
To associate your repository with the
runtime-typechecking
topic, visit your repo's landing page and select "manage topics."
Learn more
You can’t perform that action at this time.
You signed in with another tab or window. Reload to refresh your session.
You signed out in another tab or window. Reload to refresh your session.
It is common to have
Union
traits of the formUnion(None, <something>)
. As a convenience to developers, and following a similar convention in Python'styping
module, we should consider havingOptional(<something>)
as an alternative way of writingUnion(None, <something>)
.An alternative would be to make
allow_none
metadata universally accepted acrossTraitType
instances.