Some more ts updates

This commit is contained in:
Aaron Powell
2026-01-29 10:26:03 +11:00
parent d46210b2de
commit 82accb2cd6
5 changed files with 11 additions and 21 deletions

View File

@@ -2,13 +2,11 @@
* Instructions page functionality
*/
import { createChoices, getChoicesValues, type Choices } from '../choices';
import { FuzzySearch } from '../search';
import { FuzzySearch, SearchItem } from '../search';
import { fetchData, debounce, escapeHtml, getGitHubUrl, getInstallDropdownHtml, setupDropdownCloseHandlers, getActionButtonsHtml, setupActionHandlers } from '../utils';
import { setupModal, openFileModal } from '../modal';
interface Instruction {
title: string;
description?: string;
interface Instruction extends SearchItem {
path: string;
applyTo?: string;
extensions?: string[];