mirror of
https://github.com/samsonjs/samhuri.net-ios.git
synced 2026-04-03 10:55:50 +00:00
14 lines
352 B
Objective-C
14 lines
352 B
Objective-C
//
|
|
// Created by Sami Samhuri on 15-05-20.
|
|
// Copyright (c) 2015 Guru Logic Inc. All rights reserved.
|
|
//
|
|
@import Foundation;
|
|
|
|
@class PMKPromise;
|
|
|
|
@interface ExtensionItemProcessor : NSObject
|
|
|
|
- (PMKPromise *)sharedContentForPListItem:(NSExtensionItem *)item;
|
|
- (PMKPromise *)sharedContentForURLItem:(NSExtensionItem *)item text:(NSString *)text;
|
|
|
|
@end
|