UNPKG

@kitschpatrol/tweakpane-plugin-essentials

Version:

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

11 lines (10 loc) 325 B
import { BaseBladeParams, BladePlugin } from '@tweakpane/core'; export interface FpsGraphBladeParams extends BaseBladeParams { view: 'fpsgraph'; interval?: number; label?: string; max?: number; min?: number; rows?: number; } export declare const FpsGraphBladePlugin: BladePlugin<FpsGraphBladeParams>;