-
Notifications
You must be signed in to change notification settings - Fork 2
Open
Labels
documentationgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed
Description
Description
Add JSDoc documentation comments to the main API functions in src/core.ts and src/hooks/useCommandPalette.ts
Why
This helps new developers understand the codebase and improves IDE autocomplete support for users.
What to do
- Review the functions in src/core.ts and src/hooks/useCommandPalette.ts
- Add JSDoc comments following the existing style
- Include @param, @returns, and @example tags where applicable
- Test that TypeScript shows the comments in your IDE
Example
/**
* Opens the command palette
* @returns void
* @example
* const { open } = useCommandPalette();
* open();
*/
function open() { ... }Labels
good first issue, documentation, help wanted
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
documentationgood first issueGood for newcomersGood for newcomershelp wantedExtra attention is neededExtra attention is needed