@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
24 lines (23 loc) • 581 B
TypeScript
import { TsxAllowUnknowProperties } from "..";
export interface ILetterAvatarProperties {
name?: string;
size?: number;
color?: string;
}
/**Letter Avatar */
export interface ILetterAvatar extends ILetterAvatarProperties {
[name: string]: any;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-letter-avatar": TsxAllowUnknowProperties<ILetterAvatar>;
}
}
}