1 2 3 4 5 6 7 8 9 10 11 12
import {RootStoreModel} from 'state/index' import {ImageModel} from 'state/models/media/image' export async function openAltTextModal( store: RootStoreModel, image: ImageModel, ) { store.shell.openModal({ name: 'alt-text-image', image, }) }