From 0a7cc460481fc262550e99326be79134dcaafa73 Mon Sep 17 00:00:00 2001 From: 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> Date: Sat, 11 Jan 2025 14:35:18 +1100 Subject: Initial commit --- env.d.ts | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 env.d.ts (limited to 'env.d.ts') diff --git a/env.d.ts b/env.d.ts new file mode 100644 index 0000000..2e051ce --- /dev/null +++ b/env.d.ts @@ -0,0 +1,21 @@ +declare const SRC: string; + +declare module "inline:*" { + const content: string; + export default content; +} + +declare module "*.scss" { + const content: string; + export default content; +} + +declare module "*.blp" { + const content: string; + export default content; +} + +declare module "*.css" { + const content: string; + export default content; +} -- cgit v1.2.3-freya