2018-02-08 00:11:52 -08:00
|
|
|
//
|
|
|
|
// MainWindowController+Scriptability.swift
|
2018-08-28 22:18:24 -07:00
|
|
|
// NetNewsWire
|
2018-02-08 00:11:52 -08:00
|
|
|
//
|
|
|
|
// Created by Olof Hellman on 2/7/18.
|
2018-03-04 19:01:58 -08:00
|
|
|
// Copyright © 2018 Olof Hellman. All rights reserved.
|
2018-02-08 00:11:52 -08:00
|
|
|
//
|
|
|
|
|
|
|
|
import Foundation
|
2018-07-23 18:29:08 -07:00
|
|
|
import Articles
|
2018-02-08 00:11:52 -08:00
|
|
|
|
|
|
|
protocol ScriptingMainWindowController {
|
2024-03-24 12:37:55 -07:00
|
|
|
|
|
|
|
@MainActor var scriptingCurrentArticle: Article? { get }
|
|
|
|
@MainActor var scriptingSelectedArticles: [Article] { get }
|
2018-02-08 00:11:52 -08:00
|
|
|
}
|
|
|
|
|