mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
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[];
|
||
|
}
|