@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
21 lines (20 loc) • 768 B
TypeScript
import { TsxAllowUnknowProperties } from "../../TsxAllowUnknowProperties";
import { ILikeListingtemplate } from "../extensibilities/ILikeListingTemplate";
import { ISocialReactionStyling, ISocialReaction } from "../../../models";
export interface ILikeListingTemplateComponent extends ILikeListingtemplate {
likes?: Array<ISocialReaction>;
socialReactionStylings?: Array<ISocialReactionStyling>;
currentSocialReaction?: ISocialReactionStyling;
close: () => void;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface IntrinsicElements {
"omfx-like-listing-template": TsxAllowUnknowProperties<ILikeListingTemplateComponent>;
}
}
}