-
-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(shortcut): re-expose public typedef
- Loading branch information
1 parent
d3c4b06
commit 2414af5
Showing
5 changed files
with
14 additions
and
13 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 @@ | ||
--- | ||
'@svelte-put/shortcut': patch | ||
--- | ||
|
||
re-expose public typedef (following https://github.com/Rich-Harris/dts-buddy/pull/82) |
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 |
---|---|---|
@@ -1,13 +1,5 @@ | ||
// Copyright (c) Quang Phan. All rights reserved. Licensed under the MIT license. | ||
|
||
export { shortcut } from './shortcut.js'; | ||
export * from './types.public.js'; | ||
|
||
/** | ||
* Deprecated, use `ShortcutParameter` instead | ||
* @typedef {import('./public').ShortcutParameter} ShortcutParameters | ||
*/ | ||
|
||
/** | ||
* Deprecated, use `ShortcutEventDetail` instead | ||
* @typedef {import('./public').ShortcutEventDetail} ShortcutEventDetails | ||
*/ |
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
File renamed without changes.
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,3 @@ | ||
/** to provide typing only, see types.public.d.ts */ | ||
export {}; | ||
|