Suite of AT Protocol TypeScript libraries built on web standards
21
fork

Configure Feed

Select the types of activity you want to include in your feed.

mod docs

+6 -4
+1 -2
bytes/mod.ts
··· 1 1 /** 2 - * @module 3 - * 4 2 * Simple `Uint8Array` utilities for AT Protocol. 5 3 * 6 4 * ## alloc(size) ··· 157 155 * 158 156 * console.info(xorCompare(xor1, xor2)) // -1 or 0 or 1 159 157 * ``` 158 + * @module 160 159 */ 161 160 162 161 import { xor } from "./xor.ts";
+1 -1
common/deno.json
··· 1 1 { 2 2 "name": "@atp/common", 3 - "version": "0.1.0-alpha.1", 3 + "version": "0.1.0-alpha.2", 4 4 "exports": "./mod.ts", 5 5 "license": "MIT", 6 6 "imports": {
+2
common/mod.ts
··· 3 3 * 4 4 * Shared TypeScript code for other @atp/* packages. 5 5 * This package is oriented towards writing servers. 6 + * 7 + * @module 6 8 */ 7 9 export * as check from "./check.ts"; 8 10 export * as util from "./util.ts";
+1 -1
xrpc/deno.json
··· 1 1 { 2 2 "name": "@atp/xrpc", 3 - "version": "0.1.0-alpha.1", 3 + "version": "0.1.0-alpha.2", 4 4 "exports": "./mod.ts", 5 5 "license": "MIT", 6 6 "imports": {
+1
xrpc/mod.ts
··· 43 43 * res1.encoding // => 'application/json' 44 44 * res1.body // => {message: 'hello world'} 45 45 * ``` 46 + * @module 46 47 */ 47 48 export * from "./client.ts"; 48 49 export * from "./fetch-handler.ts";