We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 238c803 commit 8c976f8Copy full SHA for 8c976f8
packages/frint-react/index.d.ts
@@ -18,6 +18,28 @@ export class Streamer {
18
get$(): Observable<any>;
19
}
20
21
+export interface RegionProps {
22
+ name: string;
23
+ uniqueKey?: string;
24
+ data?: any;
25
+}
26
+
27
+export class Region extends React.Component<RegionProps, any> {
28
+ constructor(...args: any[]);
29
30
+ shouldComponentUpdate(): boolean;
31
32
+ componentWillMount(): any;
33
+ UNSAFE_componentWillMount(): any;
34
35
+ componentWillReceiveProps(): any;
36
+ UNSAFE_componentWillReceiveProps(): any;
37
38
+ componentWillUnmount(): any;
39
40
+ render(): React.ReactElement<React.Component>;
41
42
43
export class RegionService {
44
constructor();
45
0 commit comments