1: <?php
2:
3: namespace LaravelUi5\Core\Ui5\Contracts;
4:
5: use LaravelUi5\Core\Ui5\Capabilities\ResolvableInterface;
6:
7: /**
8: * Represents a UI5 Tile artifact that can be registered in the Ui5Registry
9: * and rendered within a dashboard context.
10: */
11: interface Ui5TileInterface extends Ui5ArtifactInterface, ResolvableInterface
12: {
13: }
14: