mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat(react): add library managed attributes and upgrade to 2.8 * fix broken tests * fix lint errors
12 lines
379 B
TypeScript
12 lines
379 B
TypeScript
// Type definitions for react-no-ssr 1.1
|
|
// Project: https://github.com/kadirahq/react-no-ssr
|
|
// Definitions by: Rafał Filipek <https://github.com/rafalfilipek>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.8
|
|
|
|
import * as React from 'react';
|
|
|
|
export default class NoSSR extends React.Component<{
|
|
onSSR?: React.ReactChild;
|
|
}> {}
|