File size: 127 Bytes
71174bc
 
 
 
 
 
1
2
3
4
5
6
export interface IContextMenuOption {
    text: string;
    pluginId: string;
    enabled: boolean;
    function: () => void;
}