quarkd
Version:
Mobile UI Components built on Web Components.
28 lines (27 loc) • 668 B
TypeScript
import { QuarkElement } from "quarkc";
export interface Props {
direction?: "horizontal" | "vertical";
}
export interface ItemProps {
title: string;
status: "done" | "doing" | "todo";
content?: string;
order?: string;
}
declare class QuarkStep extends QuarkElement {
order: string;
status: string;
title: string;
content: string;
containerRef: any;
setDirection(direction: string): void;
render(): any;
}
export default QuarkStep;
declare class QuarkSteps extends QuarkElement {
direction: string;
slotRef: import("quarkc").Ref<any>;
handleSlotChange: () => void;
render(): any;
}
export { QuarkSteps };