@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
27 lines (26 loc) • 738 B
TypeScript
import { TsxAllowUnknowProperties } from "../TsxAllowUnknowProperties";
import { ISocialReaction } from "../../models";
import { ILikeService } from "../../stores";
export interface ILikeComponent {
topicId: string;
commendId?: string;
commentLikeService?: ILikeService;
likes?: Array<ISocialReaction>;
likeListingTemplate?: string;
extendComponents?: Array<{
elem: string;
dynamicInput?: any;
}>;
isCompactMode?: boolean;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-like-component": TsxAllowUnknowProperties<ILikeComponent>;
}
}
}