Sha256: 171a16271b0f93c6cf31c87ec532869107c8aadbc9b5f277d28e9af124d6c8d5
Contents?: true
Size: 1006 Bytes
Versions: 8
Compression:
Stored size: 1006 Bytes
Contents
import ContainerController from "./editor/container_controller"; import ItemController from "./editor/item_controller"; import ListController from "./editor/list_controller"; import NewItemController from "./editor/new_item_controller"; import StatusBarController from "./editor/status_bar_controller"; import TrixController from "./editor/trix_controller"; const Definitions = [ { identifier: "content--editor--container", controllerConstructor: ContainerController, }, { identifier: "content--editor--item", controllerConstructor: ItemController, }, { identifier: "content--editor--list", controllerConstructor: ListController, }, { identifier: "content--editor--new-item", controllerConstructor: NewItemController, }, { identifier: "content--editor--status-bar", controllerConstructor: StatusBarController, }, { identifier: "content--editor--trix", controllerConstructor: TrixController, }, ]; export { Definitions as default };
Version data entries
8 entries across 8 versions & 1 rubygems