nsf

Results 12 issues of nsf

The following code: ``` import { ProgressBar } from "@std/cli/unstable-progress-bar"; const pb1 = new ProgressBar(Deno.stdout.writable, { max: 5 }); pb1.add(5); await pb1.end(); const pb2 = new ProgressBar(Deno.stdout.writable, { max: 5...

bug

OpenAPI has a list of "required" fields for each object and it makes sense to mark them as "Required" when describing **input**. However on **output** most fields are usually "Required"....

Type: Enhancement