* Import functions from an object or a module * To avoid errors when using one of the imported functions extend module like this: * * @example * // imported_math_functions.ts * declare module 'mathjs' { * interface MathJsInterface { * hello(a: number): number; *
(object: ImportObject | ImportObject[], options?: ImportOptions)
| 3867 | * @param options An object with import options. |
| 3868 | */ |
| 3869 | import(object: ImportObject | ImportObject[], options?: ImportOptions): void |
| 3870 | } |
| 3871 | |
| 3872 | /** |
no outgoing calls
no test coverage detected