mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
6e3f0f2b35
Summary: This is a backend part for the formula AI. Test Plan: New tests Reviewers: paulfitz Reviewed By: paulfitz Subscribers: cyprien Differential Revision: https://phab.getgrist.com/D3786
12 lines
202 B
TypeScript
12 lines
202 B
TypeScript
import {DocAction} from 'app/common/DocActions';
|
|
|
|
export interface Prompt {
|
|
tableId: string;
|
|
colId: string
|
|
description: string;
|
|
}
|
|
|
|
export interface Suggestion {
|
|
suggestedActions: DocAction[];
|
|
}
|