quarkd
Version:
Mobile UI Components built on Web Components.
29 lines (28 loc) • 709 B
TypeScript
import { QuarkElement } from "quarkc";
import "@quarkd/icons/lib/notify";
import "@quarkd/icons/lib/arrow-right";
export interface Props {
text?: string;
multiple?: boolean;
closehide?: boolean;
right?: string;
safearea?: boolean;
iconsize?: string;
bgcolor?: string;
}
export interface CustomEvent {
rightclick?: () => void;
}
declare class QuarkNoticebar extends QuarkElement {
text: string;
bgcolor: string;
color: string;
lefthide: boolean;
righthide: boolean;
multiple: number;
rightSlotRef: import("quarkc").Ref<any>;
handleRightClick: () => void;
handleRightSlotChange: () => void;
render(): any;
}
export default QuarkNoticebar;