@rbxts/rodux-hooks
Version:
Port of littensy's roact-rodux-hooked for kampf's RoactHooks library.
11 lines (10 loc) • 416 B
TypeScript
/// <reference types="roact" />
/// <reference types="@rbxts/types" />
import Roact from "@rbxts/roact";
export interface IValueModifierProps {
AnchorPoint?: Roact.Binding<Vector2> | Vector2;
LayoutOrder?: Roact.Binding<number> | number;
Position?: Roact.Binding<UDim2> | UDim2;
}
export declare const ValueModifier: (props: IValueModifierProps) => Roact.Element;
export default ValueModifier;