summaryrefslogtreecommitdiff
path: root/packages/tweetdeck/bun-env.d.ts
diff options
context:
space:
mode:
authorpolwex <polwex@sortug.com>2025-11-23 01:12:53 +0700
committerpolwex <polwex@sortug.com>2025-11-23 01:12:53 +0700
commitcb1b56f5a0eddbf77446f415f2beda57c8305f85 (patch)
treed333ca5c143063af8ee1b2f9e2d1d25f8ef2007c /packages/tweetdeck/bun-env.d.ts
wut
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;
+}