IDynamicSelectDataFunction
max: page size last : last page token args: any args to filter items args has a default option 'query'. when you type in the search box, search text ill be set to this 'query'
type IDynamicSelectDataFunction = (max: number, lastPageToken: string, args?: any) => Promise<{ items: Array<any>, pageToken: string }>
Usage
import {IDynamicSelectDataFunction} from 'uxp/components';
Last updated