Reifiable types for TypeScript
npm install @flect/core

Reifiable types for TypeScript
Flect/core is a library for describing TypeScript types using JavaScript objects.
``ts``
const Animal = record({
legCount: numberType,
sound: stringType
});
type Animal = Reify
const dog: Animal = {legCount: 4, sound: "woof"};