summaryrefslogtreecommitdiff
path: root/packages/tweetdeck/bun-env.d.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/tweetdeck/bun-env.d.ts')
-rw-r--r--packages/tweetdeck/bun-env.d.ts17
1 files changed, 17 insertions, 0 deletions
diff --git a/packages/tweetdeck/bun-env.d.ts b/packages/tweetdeck/bun-env.d.ts
new file mode 100644
index 0000000..72f1c26
--- /dev/null
+++ b/packages/tweetdeck/bun-env.d.ts
@@ -0,0 +1,17 @@
+// Generated by `bun init`
+
+declare module "*.svg" {
+ /**
+ * A path to the SVG file
+ */
+ const path: `${string}.svg`;
+ export = path;
+}
+
+declare module "*.module.css" {
+ /**
+ * A record of class names to their corresponding CSS module classes
+ */
+ const classes: { readonly [key: string]: string };
+ export = classes;
+}