IDataFunction

Definition

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

Usage

import { IDataFunction } from 'uxp/components';

Last updated