AI Notice: Most documentation right now was auto-generated by an LLM. Handwritten documentation will be implemented over time on the road to 1.0
FileMatchAPI
File matching API for canHandle callbacks
Signature
interface FileMatchAPI {
matchesExtension(file: FileEntry, extensions: string[]): boolean;
matchesMime(file: FileEntry, mimeTypes: string[]): boolean;
matchesCategory(file: FileEntry, categories: FileCategory[]): boolean;
}Members
| Name | Type | Required | Description |
|---|---|---|---|
matchesExtension | (file: FileEntry, extensions: string[]) => boolean | yes | — |
matchesMime | (file: FileEntry, mimeTypes: string[]) => boolean | yes | — |
matchesCategory | (file: FileEntry, categories: FileCategory[]) => boolean | yes | — |