@bitworks/svelte-split-text-animation
Version:
Animation of text split into characters, words or lines. Using split-type and GSAP
20 lines (19 loc) • 571 B
TypeScript
import { SvelteComponentTyped } from "svelte";
declare const __propDef: {
props: {
class?: string | undefined;
id?: string | undefined;
uid: string;
title?: string | undefined;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type YoutubeProps = typeof __propDef.props;
export type YoutubeEvents = typeof __propDef.events;
export type YoutubeSlots = typeof __propDef.slots;
export default class Youtube extends SvelteComponentTyped<YoutubeProps, YoutubeEvents, YoutubeSlots> {
}
export {};