DefinitelyTyped/types/react-broadcast/index.d.ts
Ferdy Budhidharma 6d2fc7181a feat(react-dependents): update to TS 2.8 (part 1 of 2) (#27743)
* feat(react-dependents): update to TS 2.8

* exclude react-dom

* fix version mismatches
2018-08-03 21:01:14 +01:00

32 lines
965 B
TypeScript

// Type definitions for react-broadcast 0.6
// Project: https://github.com/ReactTraining/react-broadcast
// Definitions by: Jaga Santagostino <https://github.com/kandros>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
// TypeScript Version: 2.8
import * as React from 'react';
export namespace Subscriber {
interface DefaultProps {
quiet: boolean;
}
interface Props<T> extends Partial<DefaultProps> {
channel: string;
children?: ((state: T) => React.ReactNode);
}
}
export namespace Broadcast {
interface DefaultProps<T> {
compareValues: (prevValue: T, nextValue: T) => boolean;
}
interface Props<T> extends Partial<DefaultProps<T>> {
channel: string;
children: React.ReactNode;
value: T;
}
}
export class Broadcast<T> extends React.Component<Broadcast.Props<T>, any> { }
export class Subscriber<T> extends React.Component<Subscriber.Props<T>, any> { }