File size: 292 Bytes
8480986
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
export type Popover = {
  title?: string;
  description: string;
  preferredPosition?: "top" | "right" | "bottom" | "left";
  align?: "start" | "center" | "end";
};

export function renderPopover(element: Element) {
  console.log("rendering", element);
}

export function refreshPopover() {}