docs: add more gallery #11
No reviewers
Labels
No labels
bug
documentation
duplicate
enhancement
good first issue
help wanted
invalid
question
wontfix
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set
Reference
codetease/mep!11
Loading…
Reference in a new issue
No description provided.
Delete branch "dev"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
@ -0,0 +1,13 @@// Template for creating new example filesimport { MepCLI } from "../src"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 becauseMepCLIwas never referenced. No additional methods, variables, or imports are needed.