2015-01-29 17:10:49 -08:00
|
|
|
/**
|
2018-09-11 15:27:47 -07:00
|
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
2015-03-23 15:07:33 -07:00
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-01-29 17:10:49 -08:00
|
|
|
*
|
2018-05-10 19:06:46 -07:00
|
|
|
* @format
|
2018-06-20 00:35:29 -07:00
|
|
|
* @flow strict
|
2015-01-29 17:10:49 -08:00
|
|
|
*/
|
2018-05-10 19:06:46 -07:00
|
|
|
|
2015-05-19 13:43:46 -07:00
|
|
|
'use strict';
|
2015-01-29 17:10:49 -08:00
|
|
|
|
2018-05-12 10:25:18 -07:00
|
|
|
export type EdgeInsetsProp = $ReadOnly<{|
|
|
|
|
top?: ?number,
|
|
|
|
left?: ?number,
|
|
|
|
bottom?: ?number,
|
|
|
|
right?: ?number,
|
|
|
|
|}>;
|