-
-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixes type definitions
@astrojs/image
and adds more documentation t…
…o the README (#4045) * WIP: moving to a static .d.ts types file * fixing named exports for getImage and getPicture * removing the exports.astro map for now * WIP: adding readme docs for component attributes * Adding docs for getImage and getPicture * leaning fully on TSC to build .d.ts files * finally found the solution for proper ESM import types * adding a note to the README for tsconfig updates * chore: add changesets * typo * docs: removing the "Images in Markdown" example * removing the need for publishing src to NPM * fix: make type re-export explicit * updating image module defs to match InputFormat * using astro syntax highlighting for README code blocks * nit: missing backtick in README * make sure Astro component directives aren't recommended twice
- Loading branch information
Tony Sullivan
authored
Jul 27, 2022
1 parent
55c8ace
commit a397b98
Showing
22 changed files
with
606 additions
and
363 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'astro': patch | ||
--- | ||
|
||
Adding support for custom "astro/client" type definitions in `@astrojs/image` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
--- | ||
'@astrojs/image': minor | ||
--- | ||
|
||
Big improvements to the TypeScript and Language Tools support for `@astrojs/image` :tada: |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
/// <reference types="vite/types/importMeta" /> | ||
|
||
// CSS modules | ||
type CSSModuleClasses = { readonly [key: string]: string }; | ||
|
||
declare module '*.module.css' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
declare module '*.module.scss' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
declare module '*.module.sass' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
declare module '*.module.less' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
declare module '*.module.styl' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
declare module '*.module.stylus' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
declare module '*.module.pcss' { | ||
const classes: CSSModuleClasses; | ||
export default classes; | ||
} | ||
|
||
// CSS | ||
declare module '*.css' { | ||
const css: string; | ||
export default css; | ||
} | ||
declare module '*.scss' { | ||
const css: string; | ||
export default css; | ||
} | ||
declare module '*.sass' { | ||
const css: string; | ||
export default css; | ||
} | ||
declare module '*.less' { | ||
const css: string; | ||
export default css; | ||
} | ||
declare module '*.styl' { | ||
const css: string; | ||
export default css; | ||
} | ||
declare module '*.stylus' { | ||
const css: string; | ||
export default css; | ||
} | ||
declare module '*.pcss' { | ||
const css: string; | ||
export default css; | ||
} | ||
|
||
// Built-in asset types | ||
// see `src/constants.ts` | ||
|
||
// media | ||
declare module '*.mp4' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.webm' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.ogg' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.mp3' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.wav' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.flac' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.aac' { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
// fonts | ||
declare module '*.woff' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.woff2' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.eot' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.ttf' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.otf' { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
// other | ||
declare module '*.wasm' { | ||
const initWasm: (options: WebAssembly.Imports) => Promise<WebAssembly.Exports>; | ||
export default initWasm; | ||
} | ||
declare module '*.webmanifest' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.pdf' { | ||
const src: string; | ||
export default src; | ||
} | ||
declare module '*.txt' { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
// web worker | ||
declare module '*?worker' { | ||
const workerConstructor: { | ||
new (): Worker; | ||
}; | ||
export default workerConstructor; | ||
} | ||
|
||
declare module '*?worker&inline' { | ||
const workerConstructor: { | ||
new (): Worker; | ||
}; | ||
export default workerConstructor; | ||
} | ||
|
||
declare module '*?sharedworker' { | ||
const sharedWorkerConstructor: { | ||
new (): SharedWorker; | ||
}; | ||
export default sharedWorkerConstructor; | ||
} | ||
|
||
declare module '*?raw' { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module '*?url' { | ||
const src: string; | ||
export default src; | ||
} | ||
|
||
declare module '*?inline' { | ||
const src: string; | ||
export default src; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.