You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/common/BasketClientAPI.ts

12 lines
302 B

export interface BasketClientAPI {
/**
* Returns an array of all tableIds in this basket.
*/
getBasketTables(): Promise<string[]>;
/**
* Adds, updates or deletes a table's data to/from Grist Basket.
*/
embedTable(tableId: string, action: "add"|"update"|"delete"): Promise<void>;
}