Skip to content

Commit 39f4058

Browse files
committed
new build
1 parent a4b9343 commit 39f4058

4 files changed

+10
-4
lines changed

dist/svelte-coordinate-conversion.d.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
1-
declare type Position = {
1+
type Position = {
22
left: number;
33
top: number;
44
};
5+
/**** fromViewportTo ****/
56
declare function fromViewportTo(System: 'document' | 'local', originalPosition: Position, Target?: Element): Position;
7+
/**** fromDocumentTo ****/
68
declare function fromDocumentTo(System: 'viewport' | 'local', originalPosition: Position, Target?: Element): Position;
9+
/**** fromLocalTo ****/
710
declare function fromLocalTo(System: 'viewport' | 'document', originalPosition: Position, Source?: Element): Position;
811
declare const _default: {
912
fromViewportTo: typeof fromViewportTo;

dist/svelte-coordinate-conversion.esm.js

Lines changed: 4 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)