git.schokokeks.org
Repositories
Help
Report an Issue
fs-words.git
Code
Commits
Branches
Tags
Suche
Strukturansicht:
565e59b
Branches
Tags
develop-client_server
master
typescript
fs-words.git
client
lib
plankton
url
logic-decl.d.ts
[upd] client:lib:plankton
Christian Fraß
commited
565e59b
at 2021-03-12 22:00:08
logic-decl.d.ts
Blame
History
Raw
declare module lib_url { /** * @author fenris */ type type_url = { protocol?: string; host?: string; port?: int; path?: string; arguments?: { [key: string]: string; }; }; } declare module lib_url { /** * @author fenris */ function encode(url: type_url, { "protocol": protocol, "host": host, "port": port, "path": path, "arguments": arguments_, }?: { protocol?: string; host?: string; port?: int; path?: string; arguments?: { [key: string]: string; }; }): string; /** * @author fenris * @todo arguments */ function decode(url_raw: string): type_url; } declare module lib_url { } declare module lib_url { /** * @author fenris */ class class_url implements lib_code.interface_code<type_url, string> { /** * @author fenris */ constructor(); /** * @implementation * @author fenris */ encode(x: any): string; /** * @implementation * @author fenris */ decode(x: string): any; } }