@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
25 lines (24 loc) • 601 B
TypeScript
import { IconSizes, ImageSources } from "@omnia/fx/models";
export interface IDocumentIconProperties {
size?: IconSizes;
source?: ImageSources;
extension: string;
color?: string;
}
/**Document Icon*/
export interface IDocumentIcon extends IDocumentIconProperties {
[name: string]: any;
}
declare global {
namespace VueTsxSupport.JSX {
interface Element {
}
interface ElementClass {
}
interface ElementAttributesProperty {
}
interface IntrinsicElements {
"omfx-document-icon": IDocumentIcon;
}
}
}