Summary: Move User from reducers to flipper-common. User will now be usable by other modules. Reviewed By: passy Differential Revision: D37599802 fbshipit-source-id: 66412e7ed00bf27448fa2deae70f0e8e80303aba
17 lines
306 B
TypeScript
17 lines
306 B
TypeScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @format
|
|
*/
|
|
|
|
export type User = {
|
|
id?: string;
|
|
name?: string;
|
|
profile_picture?: {
|
|
uri: string;
|
|
};
|
|
};
|