forked from vaadin/router
-
Notifications
You must be signed in to change notification settings - Fork 0
/
interfaces.d.ts
301 lines (246 loc) · 6.98 KB
/
interfaces.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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
/// <reference lib="DOM" />
// NOTE(platosha): The main TypeScript declarations are auto-generated
// in `dist/vaadin-router.d.ts` from JSdoc annotations during the build.
// This file is supplemental, it only covers the types missing from
// the generated declarations.
import {Router, RouterLocation} from './dist/vaadin-router';
declare global {
interface WindowEventMap {
'vaadin-router-location-changed': CustomEvent<{
router: Router;
location: RouterLocation;
}>;
}
}
declare module './dist/vaadin-router' {
export class NotFoundResult {
// Prevent instantiation and extension
private constructor();
// Prevent treating any object literals `{}` as a match for this type
private _notFoundResultBrand: never;
}
type _NotFoundResult = NotFoundResult;
export class ComponentResult {
private constructor();
private _componentResultBrand: never;
}
type _ComponentResult = ComponentResult;
export class PreventResult {
private constructor();
private _preventResultBrand: never;
}
type _PreventResult = PreventResult;
export class RedirectResult {
private constructor();
private _redirectResultBrand: never;
}
type _RedirectResult = RedirectResult;
export type ActionResult = void
| null
| HTMLElement
| NotFoundResult
| ComponentResult
| RedirectResult
| PreventResult;
type _ActionResult = ActionResult;
type ParamValue = string | string[];
export type IndexedParams = { [key in string | number]: ParamValue };
type _IndexedParams = IndexedParams;
export type Params = IndexedParams | ParamValue[];
type _Params = Params;
export class Context {
private constructor();
pathname: string;
search: string;
hash: string;
params: IndexedParams;
route: Route;
next: () => Promise<ActionResult>;
}
type _Context = Context;
export class Commands {
private constructor();
component: (name: string) => ComponentResult;
redirect: (path: string) => RedirectResult;
prevent: () => PreventResult;
}
type _Commands = Commands;
export interface ActionFn {
(context: Context, commands: Commands): ActionResult | Promise<ActionResult>;
}
type _ActionFn = ActionFn;
export interface ChildrenFn {
(): Route[] | Promise<Route[]>
}
type _ChildrenFn = ChildrenFn;
interface BaseRoute {
path: string;
name?: string;
// Route requires at least one of the following optional properties
action?: ActionFn;
children?: Route[] | ChildrenFn;
component?: string;
redirect?: string;
}
interface AnimateCustomClasses {
enter?: string;
leave?: string;
}
interface AnimatableRoute extends BaseRoute {
animate?: boolean | AnimateCustomClasses;
}
interface RouteWithAction extends BaseRoute {
action: ActionFn;
}
interface RouteWithChildren extends AnimatableRoute {
children: Route[] | ChildrenFn;
}
interface RouteWithComponent extends AnimatableRoute {
component: string;
}
interface RouteWithRedirect extends BaseRoute {
redirect: string;
}
export type Route = RouteWithAction
| RouteWithChildren
| RouteWithComponent
| RouteWithRedirect
type _Route = Route;
export interface RouterOptions {
baseUrl?: string;
}
type _RouterOptions = RouterOptions;
export class RouterLocation {
private constructor();
baseUrl: string;
params: IndexedParams;
pathname: string;
search: string;
hash: string;
redirectFrom?: string;
route: Route | null;
routes: Array<Route>;
searchParams: URLSearchParams;
getUrl(params?: Params): string;
}
type _RouterLocation = RouterLocation;
export class PreventAndRedirectCommands {
redirect: (path: string) => Router.RedirectResult;
prevent: () => Router.PreventResult;
}
type _PreventAndRedirectCommands = PreventAndRedirectCommands;
export class PreventCommands {
prevent: () => Router.PreventResult;
}
type _PreventCommands = PreventCommands;
export class EmptyCommands {
}
type _EmptyCommands = EmptyCommands;
export interface BeforeEnterObserver {
onBeforeEnter: (
location: RouterLocation,
commands: PreventAndRedirectCommands,
router: Router
) => void
| Router.PreventResult
| Router.RedirectResult
| Promise<void
| Router.PreventResult
| Router.RedirectResult>;
}
export interface BeforeLeaveObserver {
onBeforeLeave: (
location: RouterLocation,
commands: PreventCommands,
router: Router
) => void
| Router.PreventResult
| Promise<void
| Router.PreventResult>;
}
export interface AfterEnterObserver {
onAfterEnter: (
location: RouterLocation,
commands: EmptyCommands,
router: Router
) => void;
}
export interface AfterLeaveObserver {
onAfterLeave: (
location: RouterLocation,
commands: EmptyCommands,
router: Router
) => void;
}
export interface NavigationTrigger {
activate(): void;
inactivate(): void;
}
type _NavigationTrigger = NavigationTrigger;
namespace Router {
/**
* @deprecated use `NotFoundResult` instead of `Router.NotFoundResult`
*/
type NotFoundResult = _NotFoundResult;
/**
* @deprecated use `ComponentResult` instead of `Router.ComponentResult`
*/
type ComponentResult = _ComponentResult;
/**
* @deprecated use `PreventResult` instead of `Router.PreventResult`
*/
type PreventResult = _PreventResult;
/**
* @deprecated use `RedirectResult` instead of `Router.RedirectResult`
*/
type RedirectResult = _RedirectResult;
/**
* @deprecated use `ActionResult` instead of `Router.ActionResult`
*/
type ActionResult = _ActionResult;
/**
* @deprecated use `IndexedParams` instead of `Router.IndexedParams`
*/
type IndexedParams = _IndexedParams;
/**
* @deprecated use `Params` instead of `Router.Params`
*/
type Params = _Params;
/**
* @deprecated use `Context` instead of `Router.Context`
*/
type Context = _Context;
/**
* @deprecated use `Commands` instead of `Router.Commands`
*/
type Commands = _Commands;
/**
* @deprecated use `ActionFn` instead of `Router.ActionFn`
*/
type ActionFn = _ActionFn;
/**
* @deprecated use `ChildrenFn` instead of `Router.ChildrenFn`
*/
type ChildrenFn = _ChildrenFn;
/**
* @deprecated use `Route` instead of `Router.Route`
*/
type Route = _Route;
/**
* @deprecated use `RouterOptions` instead of `Router.Options`
*/
type Options = _RouterOptions;
/**
* @deprecated use `RouterLocation` instead of `Router.Location`
*/
type Location = _RouterLocation;
/**
* @deprecated use `NavigationTrigger` instead of `Router.NavigationTrigger`
*/
type NavigationTrigger = _NavigationTrigger;
namespace NavigationTrigger {
const CLICK: _NavigationTrigger;
const POPSTATE: _NavigationTrigger;
}
}
}