diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-11 14:35:18 +1100 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-01-11 14:35:18 +1100 |
| commit | 0a7cc460481fc262550e99326be79134dcaafa73 (patch) | |
| tree | dbfef229230b0a5bb416d12afde85c458f058df6 /env.d.ts | |
| download | caelestia-shell-0a7cc460481fc262550e99326be79134dcaafa73.tar.gz caelestia-shell-0a7cc460481fc262550e99326be79134dcaafa73.tar.bz2 caelestia-shell-0a7cc460481fc262550e99326be79134dcaafa73.zip | |
Initial commit
Diffstat (limited to 'env.d.ts')
| -rw-r--r-- | env.d.ts | 21 |
1 files changed, 21 insertions, 0 deletions
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; +} |