@flect/core
v4.1.0
Published
Reifiable types for TypeScript
Downloads
12
Maintainers
Readme
Introduction
Flect/core is a library for describing TypeScript types using JavaScript objects.
Usage
const Animal = record({
legCount: numberType,
sound: stringType
});
type Animal = Reify<typeof Animal>;
const dog: Animal = {legCount: 4, sound: "woof"};