/** * @license * Copyright 2013 Google LLC * SPDX-License-Identifier: Apache-2.0 */ /** * Create a new interpreter. * @param {string|!Object} code Raw JavaScript text or AST. * @param {Function=} opt_initFunc Optional initialization function. Used to * define APIs. When called it is passed the interpreter object and the * global scope object. * @type Class */ declare var Interpreter: Class; export declare namespace Interpreter { export type Value = boolean | number | string | null | Interpreter.Object; } export { Interpreter }; //# sourceMappingURL=interpreter.d.ts.map