fix: export structure types and update zlib to latest (#270)

* Update deps.ts

* Fixing import for structures

* Fix export

* Fixes format
This commit is contained in:
TriForMine
2020-12-23 11:48:14 +01:00
committed by GitHub
parent 321175a72f
commit 9a3475f2c6
2 changed files with 8 additions and 1 deletions
+7
View File
@@ -27,3 +27,10 @@ export function updateStructures(newStructures: Structures) {
...newStructures, ...newStructures,
}; };
} }
export type { Channel } from "./channel.ts";
export type { Guild } from "./guild.ts";
export type { Member } from "./member.ts";
export type { Message } from "./message.ts";
export type { Role } from "./role.ts";
export type { Template } from "./template.ts";
+1 -1
View File
@@ -1 +1 @@
export { decompress_with as decompressWith } from "https://unpkg.com/@evan/wasm@0.0.22/target/zlib/deno.js"; export { decompress_with as decompressWith } from "https://unpkg.com/@evan/wasm@0.0.25/target/zlib/deno.js";