1 // Copyright 2015-present 650 Industries. All rights reserved.
2 
3 import Foundation
4 
5 @objc
6 public protocol DevMenuItemsContainerProtocol {
7   @objc
getRootItemsnull8   func getRootItems() -> [DevMenuScreenItem]
9 
10   @objc
11   func getAllItems() -> [DevMenuScreenItem]
12 }
13