-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathinterfaces.d.ts
More file actions
58 lines (46 loc) · 1015 Bytes
/
interfaces.d.ts
File metadata and controls
58 lines (46 loc) · 1015 Bytes
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
interface NodeRequireFunction {
(id: string): any;
}
interface NodeRequire extends NodeRequireFunction {
resolve(id:string): string;
cache: any;
extensions: any;
main: any;
}
declare var require: NodeRequire;
interface ISearchItem {
key: number,
title: string,
author: string,
pubDate: Date
}
interface IComponenta {
name: string;
items: Array<string>;
}
interface IPlacedItem {
id?: string;
title: string;
}
interface IPlacedItemDropTarget {
targetId: string;
}
interface IPlacedTargetPayload {
targetId: string;
}
interface IPlacedTargetITemPayload extends IPlacedTargetPayload {
item: ISearchItem;
}
interface IExchangeItemsPayload {
sourceId: string;
targetId: string;
}
interface IComponentaPayload{
index: number;
}
interface ISearchResult {
onSearchItemSelected: (val: ISearchItem) => void;
}
interface IStoreState {
channel: Immutable.Map<string, any>;
}