@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
27 lines (26 loc) • 692 B
TypeScript
import { TsxAllowUnknowProperties } from "..";
export interface ISiteLogoIconProperties {
/**Force to render as Letter Avatar */
forceLetterAvatar?: boolean;
/**SharePoint site url */
siteUrl?: string;
/**Icon size */
size?: number;
}
/**Site Logo Icon */
export interface ISiteLogoIcon extends ISiteLogoIconProperties {
[name: string]: any;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-site-logo-icon": TsxAllowUnknowProperties<ISiteLogoIcon>;
}
}
}