fbshipit-source-id: d0f4b1833968aae403b114119f4e8cda184361c9

This commit is contained in:
Daniel Buchele
2018-06-13 11:17:05 -07:00
parent 50490b9435
commit 5bd6869aeb
45 changed files with 6439 additions and 148 deletions

View File

@@ -0,0 +1,20 @@
/*
* Copyright (c) 2004-present, Facebook, Inc.
*
* This source code is licensed under the MIT license found in the LICENSE
* file in the root directory of this source tree.
*
*/
#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);
} }