types/entry.d.ts not needed

This commit is contained in:
2025-03-08 17:40:47 -05:00
parent 7a457e5205
commit fc0ef23bdb
4 changed files with 36 additions and 47 deletions

View File

@ -1,4 +1,4 @@
import { type Entry } from "./types/entry"
import { type Entry } from "./main"
import { wrap_bsearch, type WrapBSearch } from "./wrap"
export default function directory_search<T extends Entry>(entry_collection: T[], file_name: string): WrapBSearch<T> | undefined {