diff options
author | 2022-08-05 17:46:52 -0400 | |
---|---|---|
committer | 2022-08-05 17:46:52 -0400 | |
commit | c9b679e56e65f25eccb1d91b9827702cb5b82673 (patch) | |
tree | d24013dcf5fde986ca7bda7ce88867acc2dd79cd /examples/framework-react/src/env.d.ts | |
parent | 69db0298d07b560992346d1a41e85afd767ee61f (diff) | |
download | astro-c9b679e56e65f25eccb1d91b9827702cb5b82673.tar.gz astro-c9b679e56e65f25eccb1d91b9827702cb5b82673.tar.zst astro-c9b679e56e65f25eccb1d91b9827702cb5b82673.zip |
Move types to a .d.ts file inside examples projects (#4171)
* Move types to a .d.ts file to avoid making types explicit
* Rename to proper types
* Move to proper place
* Add noEmit to tsconfig.json
* Add back removed code by accident
Diffstat (limited to 'examples/framework-react/src/env.d.ts')
-rw-r--r-- | examples/framework-react/src/env.d.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/framework-react/src/env.d.ts b/examples/framework-react/src/env.d.ts new file mode 100644 index 000000000..f964fe0cf --- /dev/null +++ b/examples/framework-react/src/env.d.ts @@ -0,0 +1 @@ +/// <reference types="astro/client" /> |