UNPKG

@kitschpatrol/tweakpane-plugin-essentials

Version:

A fork of @tweakpane/plugin-essentials with build optimizations.

16 lines (15 loc) 470 B
import { PointNdAssembly } from '@tweakpane/core'; export interface IntervalObject { max: number; min: number; } export declare class Interval { max: number; min: number; constructor(min: number, max: number); static isObject(obj: unknown): obj is IntervalObject; static equals(v1: Interval, v2: Interval): boolean; get length(): number; toObject(): IntervalObject; } export declare const IntervalAssembly: PointNdAssembly<Interval>;