| 34 | import { apply_custom_css_style } from "@html_builder/core/core_builder_action_plugin"; |
| 35 | |
| 36 | interface SharedMethods { |
| 37 | // Main |
| 38 | |
| 39 | // Core |
| 40 | anchor: AnchorShared; |
| 41 | builderActions: BuilderActionsShared; |
| 42 | builderComponents: BuilderComponentShared; |
| 43 | builderOptions: BuilderOptionsShared; |
| 44 | builderOverlay: BuilderOverlayShared; |
| 45 | cachedModel: CachedModelShared; |
| 46 | clone: CloneShared; |
| 47 | customizeTab: CustomizeTabShared; |
| 48 | disableSnippets: DisableSnippetsShared; |
| 49 | dropzone: DropZoneShared; |
| 50 | media_website: MediaWebsiteShared; |
| 51 | operation: OperationShared; |
| 52 | overlayButtons: OverlayButtonsShared; |
| 53 | remove: RemoveShared; |
| 54 | savePlugin: SaveShared; |
| 55 | setup_editor_plugin: SetupEditorShared; |
| 56 | visibility: VisibilityShared; |
| 57 | |
| 58 | // Other |
| 59 | } |
| 60 | |
| 61 | interface GlobalResources extends BuilderResourcesAccess {} |
| 62 | export type BuilderResourcesAccess = EditorResourcesAccess & ResourcesTypesFactory<BuilderResourcesList>; |
nothing calls this directly
no outgoing calls
no test coverage detected