mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
16 lines
330 B
TypeScript
16 lines
330 B
TypeScript
|
import {ISandbox} from 'app/server/lib/ISandbox';
|
||
|
|
||
|
export class NullSandbox implements ISandbox {
|
||
|
public async shutdown(): Promise<unknown> {
|
||
|
return undefined;
|
||
|
}
|
||
|
|
||
|
public async pyCall(_funcName: string, ..._varArgs: unknown[]) {
|
||
|
return undefined;
|
||
|
}
|
||
|
|
||
|
public async reportMemoryUsage() {
|
||
|
return undefined;
|
||
|
}
|
||
|
}
|