mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-25 23:05:23 +00:00
Added and updated copyright headers. Added some missing Flow types. Removed an invalid prop-types import.
22 lines
346 B
JavaScript
22 lines
346 B
JavaScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*/
|
|
|
|
declare module 'glamor' {
|
|
declare module.exports: {
|
|
css: {
|
|
global: (...params: any) => void,
|
|
},
|
|
};
|
|
}
|
|
|
|
declare module 'glamor/react' {
|
|
declare module.exports: {
|
|
createElement: any,
|
|
dom: any,
|
|
vars: any,
|
|
makeTheme: any,
|
|
propMerge: Function,
|
|
};
|
|
}
|