gl-react
Version:
Universal React library, write and compose WebGL shaders, implement complex effects using a descriptive paradigm
22 lines • 574 B
TypeScript
import { Component } from "react";
import Node from "./Node";
type Props = {
children?: any;
[key: string]: any;
};
/**
* copy pixel with a linear interpolation
* @prop {any} children content to render
*/
declare class LinearCopy extends Component<Props> {
_node: Node | null;
/**
* get a reference to the underlying Node instance
* @return {Node}
*/
getNodeRef(): Node;
_onRef: (node: Node | null) => void;
render(): import("react/jsx-runtime").JSX.Element;
}
export default LinearCopy;
//# sourceMappingURL=LinearCopy.d.ts.map