UNPKG

@directus/api

Version:

Directus is a real-time API and App dashboard for managing SQL database content

8 lines (7 loc) 219 B
/** * Parses a filter key, returning its field name and function name (if defined) separately. */ export declare function parseFilterKey(key: string): { fieldName: string; functionName: string | undefined; };