mirror of
https://github.com/status-im/react-native-mapbox-gl.git
synced 2026-08-31 13:01:15 +00:00
17 lines
366 B
Objective-C
17 lines
366 B
Objective-C
//
|
|
// RCTMapboxGLManager.h
|
|
// RCTMapboxGL
|
|
//
|
|
// Created by Bobby Sudekum on 4/30/15.
|
|
// Copyright (c) 2015 Mapbox. All rights reserved.
|
|
//
|
|
|
|
#import "RCTViewManager.h"
|
|
|
|
@interface RCTMapboxGLManager : RCTViewManager {
|
|
NSMutableSet * _recentPacks;
|
|
NSMutableSet * _throttledPacks;
|
|
NSMutableArray * _packRequests;
|
|
NSMutableSet * _removedPacks;
|
|
}
|
|
@end |