You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gristlabs_grist-core/app/server/lib/NullSandbox.ts

16 lines
330 B

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;
}
}