vue-tweet-pure
Version:
A Vue 3 component for embedding tweets in your Vue.js applications.
9 lines (8 loc) • 570 B
TypeScript
import type { MediaAnimatedGif, MediaVideo } from '../api';
import { type EnrichedQuotedTweet, type EnrichedTweet } from '../utils';
interface Props {
tweet: EnrichedTweet | EnrichedQuotedTweet;
media: MediaAnimatedGif | MediaVideo;
}
declare const _default: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
export default _default;