tweakpane-plugin-inputs
Version:
Input plugins for Tweakpane
12 lines (11 loc) • 321 B
TypeScript
import { View, ViewProps } from '@tweakpane/core';
interface Config {
viewProps: ViewProps;
}
export declare class FpsView implements View {
readonly element: HTMLElement;
readonly graphElement: HTMLElement;
readonly valueElement: HTMLElement;
constructor(doc: Document, config: Config);
}
export {};