12345 |
- import { AnyWrapper, WrapperConstructor, Constructor } from '../Wrapper.js';
- export interface CommonMath extends AnyWrapper {
- }
- export declare type MathConstructor = Constructor<CommonMath>;
- export declare function CommonMathMixin<T extends WrapperConstructor>(Base: T): MathConstructor & T;
|