IDataFunction

type IDataFunction = (max: number, lastPageToken: string, args?: any) => Promise<{ items: Array<any>, pageToken: string }>;

Usage

import {IDataFunction} from 'uxp/components';

Last updated