vue-tweet-pure
Version:
A Vue 3 component for embedding tweets in your Vue.js applications.
11 lines (10 loc) • 633 B
TypeScript
import { type EnrichedTweet, type EnrichedQuotedTweet } from '../utils';
import type { TwitterComponents } from './default-theme';
interface Props {
tweet: EnrichedTweet | EnrichedQuotedTweet;
components?: TwitterComponents;
quoted?: boolean;
}
declare const __VLS_export: import("vue").DefineComponent<Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<Props> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
declare const _default: typeof __VLS_export;
export default _default;