-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.d.ts
75 lines (62 loc) · 1.47 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
import React from "react";
type BlockNames = string[];
/**
* Components
*/
export const InlineNotice: React.FC<{
status: "warning" | "error";
size: "regular" | "small";
}>;
export const PostControl: React.FC<{
label: string;
posts: any[];
value: number;
onChange: (...args: any[]) => any;
}>;
export const RequireBlocks: React.FC<{
blocks: BlockNames;
}>;
export const SortablePostsControl: React.FC<{
label: string;
posts: any[];
value: number[];
onChange: (...args: any[]) => any;
}>;
export const SortablePostSearchControl: React.FC<{
type: string;
status: string;
value: number[];
onChange: (...args: any[]) => any;
placeholder: string;
label: string;
inputProps: object;
filterResults: (results: any[]) => any[];
numOfInitialResults: number;
}>;
export const TaxonomyControl: React.FC<{
slug: string;
label: string;
value: any[];
onChange: (...args: any[]) => any;
}>;
export const PostSearchControl: React.FC<{
type: string;
status: string;
value: number;
onChange: (...args: any[]) => any;
placeholder: string;
label: string;
inputProps: object;
filterResults: (results: any[]) => any[];
numOfInitialResults: number;
}>;
/**
* Hooks
*/
export function useAllPosts(postType: string): any[];
export function useRequiredBlocks(requiredBlocks: BlockNames): {
missingBlocks: BlockNames;
hasRequiredBlocks: boolean;
};
export function usePost(postType: string, id: number): any;
export function usePostSearch(postType: string, search: string): any[];