UNPKG

@animech-public/chonky

Version:

A File Browser component for React

5 lines (4 loc) 251 B
import { FileData } from './file.types'; export type SearchInputCallback = (e: React.FormEvent<HTMLInputElement>) => void; export type CancelSearchCallback = () => void; export type SearchPredicate = (searchPhrase: string, file: FileData) => boolean;