mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
9 lines
279 B
TypeScript
9 lines
279 B
TypeScript
|
import {DocModel, IRowModel} from 'app/client/models/DocModel';
|
||
|
|
||
|
// Record of input code and output text and error info for REPL.
|
||
|
export type REPLRec = IRowModel<"_grist_REPL_Hist">
|
||
|
|
||
|
export function createREPLRec(this: REPLRec, docModel: DocModel): void {
|
||
|
// no extra fields
|
||
|
}
|