mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
13 lines
294 B
TypeScript
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';
|