public.d.ts — svelte Source File
Architecture documentation for public.d.ts, a typescript file in the svelte codebase.
Entity Profile
Relationship Graph
Source Code
// todo: same as Transition, should it be shared?
export interface AnimationConfig {
delay?: number;
duration?: number;
easing?: (t: number) => number;
css?: (t: number, u: number) => string;
tick?: (t: number, u: number) => void;
}
export interface FlipParams {
delay?: number;
duration?: number | ((len: number) => number);
easing?: (t: number) => number;
}
export * from './index.js';
Domain
Subdomains
Source
Frequently Asked Questions
What does public.d.ts do?
public.d.ts is a source file in the svelte codebase, written in typescript. It belongs to the AnimationLibrary domain, Transitions subdomain.
What functions are defined in public.d.ts?
public.d.ts defines 2 function(s): len, t.
Where is public.d.ts in the architecture?
public.d.ts is located at packages/svelte/src/animate/public.d.ts (domain: AnimationLibrary, subdomain: Transitions, directory: packages/svelte/src/animate).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free