UNPKG

@adpt/core

Version:
14 lines 481 B
import { Handle } from "../handle"; import { AdaptElement, SFCDeclProps } from "../jsx"; import { Children } from "../type_support"; /** * Props for {@link Adapt.Sequence}. */ export interface SequenceProps extends Children<Handle | AdaptElement | null> { } /** * Component that deploys its children sequentially. * @public */ export declare function Sequence(props: SFCDeclProps<SequenceProps>): AdaptElement<import("../jsx").AnyProps>; //# sourceMappingURL=sequence.d.ts.map