@chemistry/mol3dview
Version:
Crystal Structure Viewer
18 lines (17 loc) • 404 B
TypeScript
export declare class ContextMenuItem {
private type;
private title;
private isChecked;
private command;
private view;
private checkbox;
constructor(options: {
type: string;
title: string;
isChecked?: () => void;
command?: (event: any) => void;
});
onDestroy(): void;
getView(): any;
private updateCheckBox();
}