Questions tagged [dsl]

A Domain-Specific Language, or DSL, is a coding language specifically designed to address the needs of a specific application area.

Incorporating a custom transpiled file format into Typescript imports

I am trying to import a file format .xyz that does not have fixed types for all instances of the format: import { Comment, Article, User } from "./Blog.xyz" However, I keep getting this error message: TS2307: Cannot find module './Blog.xyz' or ...