mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-23 20:23:08 +00:00
Added and updated copyright headers. Added some missing Flow types. Removed an invalid prop-types import.
8 lines
158 B
JavaScript
8 lines
158 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*/
|
|
|
|
declare module 'hex2rgba' {
|
|
declare module.exports: (hex: string, alpha?: number) => string;
|
|
}
|