Export the EasingFunction type (#6056)

pull/7738/head
AmirHossein Ahmadi 6 years ago committed by GitHub
parent 86e78b38e4
commit 67f744ccfb

@ -1,7 +1,7 @@
import { cubicOut, cubicInOut, linear } from 'svelte/easing'; import { cubicOut, cubicInOut, linear } from 'svelte/easing';
import { assign, is_function } from 'svelte/internal'; import { assign, is_function } from 'svelte/internal';
type EasingFunction = (t: number) => number; export type EasingFunction = (t: number) => number;
export interface TransitionConfig { export interface TransitionConfig {
delay?: number; delay?: number;

Loading…
Cancel
Save