UNPKG

387 BTypeScriptView Raw
1/// <reference types="node" />
2
3import * as client from "./lib/client";
4import * as crypto from "./lib/crypto";
5import * as server from "./lib/server";
6import * as utils from "./lib/utils";
7
8export namespace uri {
9 const authenticate: typeof server.authenticateBewit;
10 const getBewit: typeof client.getBewit;
11}
12
13export { client, crypto, server, utils };
14
15export as namespace hawk;