docs: add more gallery #11

Merged
irammini merged 11 commits from dev into main 2026-02-05 01:05:57 +00:00
irammini commented 2026-02-04 19:52:14 +00:00 (Migrated from github.com)
No description provided.
github-code-quality[bot] (Migrated from github.com) reviewed 2026-02-05 00:53:15 +00:00
@ -0,0 +1,13 @@
// Template for creating new example files
import { MepCLI } from "../src"
github-code-quality[bot] (Migrated from github.com) commented 2026-02-05 00:53:15 +00:00

Unused variable, import, function or class

Unused import MepCLI.


In general, unused imports should either be removed or the imported symbol should be used. Since this template currently has no real logic and does not reference MepCLI, the least invasive fix is to remove the unused import statement.

Concretely, in examples/template.ts, delete line 3 (import { MepCLI } from "../src"). This does not change any runtime behavior because MepCLI was never referenced. No additional methods, variables, or imports are needed.

## Unused variable, import, function or class Unused import MepCLI. --- In general, unused imports should either be removed or the imported symbol should be used. Since this template currently has no real logic and does not reference <code>MepCLI</code>, the least invasive fix is to remove the unused import statement.</p> <p>Concretely, in <code>examples/template.ts</code>, delete line 3 (<code>import { MepCLI } from "../src"</code>). This does not change any runtime behavior because <code>MepCLI</code> was never referenced. No additional methods, variables, or imports are needed.
Sign in to join this conversation.
No description provided.