diff options
author | 2022-07-27 15:41:22 +0000 | |
---|---|---|
committer | 2022-07-27 15:41:22 +0000 | |
commit | 57770bbae2dc339a4953e08d8c81b0db3b4f7812 (patch) | |
tree | 9c4d84a7cc4b8ae41da47896881a996f4f4e67b1 /packages/integrations/image/components/index.ts | |
parent | a397b981f5f46dee85e6e00aa39633d018d4b9a2 (diff) | |
download | astro-57770bbae2dc339a4953e08d8c81b0db3b4f7812.tar.gz astro-57770bbae2dc339a4953e08d8c81b0db3b4f7812.tar.zst astro-57770bbae2dc339a4953e08d8c81b0db3b4f7812.zip |
[ci] format
Diffstat (limited to 'packages/integrations/image/components/index.ts')
-rw-r--r-- | packages/integrations/image/components/index.ts | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/packages/integrations/image/components/index.ts b/packages/integrations/image/components/index.ts index 088278fc2..89d8edd03 100644 --- a/packages/integrations/image/components/index.ts +++ b/packages/integrations/image/components/index.ts @@ -3,5 +3,11 @@ export { default as Image } from './Image.astro'; export { default as Picture } from './Picture.astro'; // TODO: should these directives be removed from astroHTML.JSX? -export type ImgHTMLAttributes = Omit<astroHTML.JSX.ImgHTMLAttributes, 'client:list' | 'set:text' | 'set:html' | 'is:raw'>; -export type HTMLAttributes = Omit<astroHTML.JSX.HTMLAttributes, 'client:list' | 'set:text' | 'set:html' | 'is:raw'>; +export type ImgHTMLAttributes = Omit< + astroHTML.JSX.ImgHTMLAttributes, + 'client:list' | 'set:text' | 'set:html' | 'is:raw' +>; +export type HTMLAttributes = Omit< + astroHTML.JSX.HTMLAttributes, + 'client:list' | 'set:text' | 'set:html' | 'is:raw' +>; |