Browse Source
Added and updated copyright headers. Added some missing Flow types. Removed an invalid prop-types import.main
committed by
GitHub
95 changed files with 211 additions and 85 deletions
@ -1,3 +1,7 @@ |
|||||
|
/** |
||||
|
* Copyright (c) Facebook, Inc. and its affiliates. |
||||
|
*/ |
||||
|
|
||||
declare module 'gatsby' { |
declare module 'gatsby' { |
||||
declare module.exports: any; |
declare module.exports: any; |
||||
} |
} |
||||
|
@ -1,3 +1,7 @@ |
|||||
|
/** |
||||
|
* Copyright (c) Facebook, Inc. and its affiliates. |
||||
|
*/ |
||||
|
|
||||
declare module 'hex2rgba' { |
declare module 'hex2rgba' { |
||||
declare module.exports: (hex: string, alpha?: number) => string; |
declare module.exports: (hex: string, alpha?: number) => string; |
||||
} |
} |
||||
|
@ -1,3 +1,7 @@ |
|||||
|
/** |
||||
|
* Copyright (c) Facebook, Inc. and its affiliates. |
||||
|
*/ |
||||
|
|
||||
declare module 'react-helmet' { |
declare module 'react-helmet' { |
||||
declare module.exports: any; |
declare module.exports: any; |
||||
} |
} |
||||
|
@ -1,3 +1,7 @@ |
|||||
|
/** |
||||
|
* Copyright (c) Facebook, Inc. and its affiliates. |
||||
|
*/ |
||||
|
|
||||
declare module 'slugify' { |
declare module 'slugify' { |
||||
declare module.exports: any; |
declare module.exports: any; |
||||
} |
} |
||||
|
@ -1,3 +1,9 @@ |
|||||
|
/** |
||||
|
* Copyright (c) Facebook, Inc. and its affiliates. |
||||
|
* |
||||
|
* @flow |
||||
|
*/ |
||||
|
|
||||
import CodeExample from './CodeExample'; |
import CodeExample from './CodeExample'; |
||||
|
|
||||
export default CodeExample; |
export default CodeExample; |
||||
|
Loading…
Reference in new issue