13 lines
220 B
Swift
13 lines
220 B
Swift
|
//
|
||
|
// MediaPreviewingViewController.swift
|
||
|
// Mastodon
|
||
|
//
|
||
|
// Created by MainasuK Cirno on 2021-4-28.
|
||
|
//
|
||
|
|
||
|
import Foundation
|
||
|
|
||
|
protocol MediaPreviewingViewController: class {
|
||
|
func isInteractiveDismissable() -> Bool
|
||
|
}
|