AI Disclosure: This page was generated by an LLM and may contain inaccuracies. Hand-crafted documentation will be implemented over time on the road to 1.0
FileMatchAPI
Since Plugin API: 1.0.0
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 | - |