This is a heavily interactive web application, and JavaScript is required. Simple HTML interfaces are possible, but that is not what this is.
Post
Mark Dalgleish
markdalgleish.com
did:plc:hucjy724rz245jjd3ismnwcy
Positional args with primitive types make me nervous.
e.g.
function processCss(path: string) {…}
Consumers might get confused and think they need to pass a string of CSS. Typescript won’t complain.
That’s why I prefer this:
function processCss(args: { path: string }) {…}
2023-06-06T04:19:54.156Z