-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtastespoon.d.ts
38 lines (35 loc) · 1.13 KB
/
tastespoon.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
declare module "tastespoon" {
export import Resource = require("tastespoon/lib/resource");
export import Context = require("tastespoon/lib/context");
import Server = require("tastespoon/lib/server");
export var define: typeof Server.define;
export var server: typeof Server.findServerByName;
}
declare module "tastespoon/lib/resource" {
class Resource {
toString(): string;
}
export = Resource;
}
declare module "tastespoon/lib/context" {
import Server = require("tastespoon/lib/server");
import Resource = require("tastespoon/lib/resource");
class Context {
server: Server;
resource: Resource;
constructor(server: Server, resource: Resource);
}
export = Context;
}
declare module "tastespoon/lib/server" {
import Resource = require("tastespoon/lib/resource");
class Server extends Resource {
static define(name: string, address: string): void;
static findServerByName(name: string): Server;
name: string;
address: string;
constructor(name: string, address: string);
toString(): string;
}
export = Server;
}