Definitions
Definition CLI
Setup
Usage
(Stay inside the root directory when running the command)
General Report
Feature Report
Watch for Changes
Definition
TypeScript Definition Package
Install Package
Usage
const features = Definition("./path/to/definitions")
for (const feature in features) {
const name = feature.name; //name of the feature (e.g. rest)
const dataTypes = fearture.dataTypes; //dataTypes of this feature
const flowTypes = fearture.flowTypes; //flowTypes of this feature
const functions = fearture.runtimeFunctions; //runtimeFunctions of this feature
}