Skip to content

Commit

Permalink
Provide an index types file (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
StamTsag authored May 30, 2022
1 parent 21b06d3 commit 0007e79
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions src/lib/index.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
/// <reference types="svelte" />

declare module 'saos' {
import type { SvelteComponentTyped } from 'svelte';

export default class Saos extends SvelteComponentTyped<{
animation?: string;
animation_out?: string;
once?: boolean;
top?: number;
bottom?: number;
css_observer?: string;
css_animation?: string;
}> {}
}

0 comments on commit 0007e79

Please sign in to comment.