@@ -636,27 +636,27 @@ export type LinkableMarkProps = {
636
636
/**
637
637
* if set, the mark element will be wrapped in a <a> link element
638
638
*/
639
- href : ConstantAccessor < string > ;
639
+ href ? : ConstantAccessor < string > ;
640
640
/**
641
641
* the relationship of the target object to the link object (e.g. "noopener")
642
642
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/a#rel
643
643
*/
644
- rel : ConstantAccessor < string > ;
644
+ rel ? : ConstantAccessor < string > ;
645
645
/**
646
646
* the link target mime type, e.g. "text/csv"
647
647
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/a#type
648
648
*/
649
- type : ConstantAccessor < string > ;
649
+ type ? : ConstantAccessor < string > ;
650
650
/**
651
651
* the target of the link, e.g. "_blank" or "_self"
652
652
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Reference/Elements/a#target
653
653
*/
654
- target : ConstantAccessor < '_self' | '_blank' | '_parent' | '_top' | string > ;
654
+ target ? : ConstantAccessor < '_self' | '_blank' | '_parent' | '_top' | string > ;
655
655
/**
656
656
* if set to true, the link will be downloaded instead of navigating to it
657
657
* @see https://developer.mozilla.org/en-US/docs/Web/HTML/Element/a#download
658
658
*/
659
- download : ConstantAccessor < boolean > ;
659
+ download ? : ConstantAccessor < boolean > ;
660
660
// allow data-sveltekit-* attributes on the link element, e.g. data-sveltekit-reload
661
661
[ key : `data-sveltekit-${string } `] : string | boolean ;
662
662
} ;
0 commit comments