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