mirror of
https://github.com/facebook/react-native.git
synced 2025-11-01 09:14:26 +00:00
06d3031281
Summary: Split changes from D17587836 Native changes for ImageLoader native module Reviewed By: TheSavior Differential Revision: D17607364 fbshipit-source-id: 451e24d4cf3c982b64bd6196addacef4cb967d1b
23 lines
620 B
JavaScript
23 lines
620 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*
|
|
* @flow
|
|
* @format
|
|
*/
|
|
|
|
'use strict';
|
|
|
|
import type {TurboModule} from '../TurboModule/RCTExport';
|
|
import * as TurboModuleRegistry from '../TurboModule/TurboModuleRegistry';
|
|
|
|
export interface Spec extends TurboModule {
|
|
+getConstants: () => {||};
|
|
// Return [width, height] of image uri
|
|
+getSize: (uri: string) => Promise<$ReadOnlyArray<number>>;
|
|
}
|
|
|
|
export default (TurboModuleRegistry.getEnforcing<Spec>('ImageLoader'): Spec);
|