quarkd
Version:
Mobile UI Components built on Web Components.
22 lines (21 loc) • 576 B
TypeScript
import { QuarkElement } from "quarkc";
import "../loading";
export interface Props {
time: string;
format?: string;
}
export interface CustomEvent {
end: () => void;
}
declare class QuarkButton extends QuarkElement {
time: string;
format: string;
totalTime: number;
timeCounter: ReturnType<typeof setTimeout> | null;
setUnit: (val: any) => any;
start: () => void;
calculateShow: (value: any) => string;
componentDidUpdate(propName: string, oldValue: string, newValue: string): void;
render(): any;
}
export default QuarkButton;