Skip to content

Commit 7f0216f

Browse files
committed
doh
1 parent b723737 commit 7f0216f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

packages/svelte/types/index.d.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,7 @@ declare module 'svelte' {
229229
*
230230
* If a function is returned _synchronously_ from `onMount`, it will be called when the component is unmounted.
231231
*
232-
* `onMount` does not run inside a [server-side component](/docs#run-time-server-side-component-api).
232+
* `onMount` does not run inside a [server-side component](https://svelte.dev/docs#run-time-server-side-component-api).
233233
*
234234
* https://svelte.dev/docs/svelte#onmount
235235
* */
@@ -267,7 +267,7 @@ declare module 'svelte' {
267267
* */
268268
export function getAllContexts<T extends Map<any, any> = Map<any, any>>(): T;
269269
/**
270-
* Creates an event dispatcher that can be used to dispatch [component events](/docs#template-syntax-component-directives-on-eventname).
270+
* Creates an event dispatcher that can be used to dispatch [component events](https://svelte.dev/docs#template-syntax-component-directives-on-eventname).
271271
* Event dispatchers are functions that can take two arguments: `name` and `detail`.
272272
*
273273
* Component events created with `createEventDispatcher` create a
@@ -2169,7 +2169,7 @@ declare module 'svelte/transition' {
21692169
getTotalLength(): number;
21702170
}, { delay, speed, duration, easing }?: DrawParams | undefined): TransitionConfig;
21712171
/**
2172-
* The `crossfade` function creates a pair of [transitions](/docs#template-syntax-element-directives-transition-fn) called `send` and `receive`. When an element is 'sent', it looks for a corresponding element being 'received', and generates a transition that transforms the element to its counterpart's position and fades it out. When an element is 'received', the reverse happens. If there is no counterpart, the `fallback` transition is used.
2172+
* The `crossfade` function creates a pair of [transitions](https://svelte.dev/docs#template-syntax-element-directives-transition-fn) called `send` and `receive`. When an element is 'sent', it looks for a corresponding element being 'received', and generates a transition that transforms the element to its counterpart's position and fades it out. When an element is 'received', the reverse happens. If there is no counterpart, the `fallback` transition is used.
21732173
*
21742174
* https://svelte.dev/docs/svelte-transition#crossfade
21752175
* */

0 commit comments

Comments
 (0)