react-native
Version:
A framework for building native apps using React
31 lines (26 loc) • 535 B
JavaScript
/**
* 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.
*
* @flow strict
* @format
*/
;
export opaque type BlobCollector = {...};
export type BlobData = {
blobId: string,
offset: number,
size: number,
name?: string,
type?: string,
lastModified?: number,
__collector?: ?BlobCollector,
...
};
export type BlobOptions = {
type: string,
lastModified: number,
...
};