math.d.ts 292 B

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