mirror of
https://github.com/wassname/DefinitelyTyped.git
synced 2026-09-09 11:13:57 +08:00
Vendored
+15
@@ -0,0 +1,15 @@
|
||||
// Type definitions for routie 0.3.0
|
||||
// Project: https://github.com/jgallen23/routie
|
||||
// Definitions by: Adilson <https://github.com/Adilson>
|
||||
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
||||
|
||||
interface Route {
|
||||
constructor(path: string, name: string);
|
||||
addHandler(fn: Function): void;
|
||||
removeHandler(fn: Function): void;
|
||||
run(params: any): void;
|
||||
match(path: string, params: any): bool;
|
||||
toURL(params: any): string;
|
||||
}
|
||||
|
||||
function routie(path: string, fn: Function): void;
|
||||
Reference in New Issue
Block a user