This commit is contained in:
Pritesh Nandgaonkar
2018-06-01 11:50:29 +01:00
parent fbbf8cf16b
commit 674eeddd62
12 changed files with 810 additions and 698 deletions

View File

@@ -0,0 +1,14 @@
// Copyright 2004-present Facebook. All Rights Reserved.
#pragma once
#import <Foundation/Foundation.h>
#include <folly/dynamic.h>
namespace facebook {
namespace cxxutils {
folly::dynamic convertIdToFollyDynamic(id json);
id convertFollyDynamicToId(const folly::dynamic &dyn);
} }