gristlabs_grist-core/app/common/DocumentSettings.ts
2024-10-11 20:20:09 +02:00

13 lines
294 B
TypeScript

export interface DocumentSettings {
locale: string;
currency?: string;
engine?: EngineCode;
customCode?: string;
}
/**
* The back-end will for now support at most two engines, a pynbox-backed python2 and
* a gvisor-backed python3.
*/
export type EngineCode = 'python2' | 'python3';