react-native-macos
Version:
[Microsoft Fork] A framework for building native apps using React
29 lines (24 loc) • 546 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 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,
};