7 lines
124 B
TypeScript
7 lines
124 B
TypeScript
export interface GridMenuParams {
|
|
/**
|
|
* The element that opens the menu.
|
|
*/
|
|
target: HTMLElement | null;
|
|
}
|