@omnia/fx
Version:
Provide Omnia Fx typings and tooling for clientside Omnia development.
20 lines (19 loc) • 418 B
TypeScript
import { ScopedSlots } from "../../UxCoreTypings";
import Vue from "vue";
export interface IVSelectScopedSlots {
item?: {
parent: Vue;
item: any;
tile: any;
};
selection?: {
parent: Vue;
item: any;
index: number;
selected: boolean;
disabled: boolean;
};
}
export interface IVSelect {
scopedSlots?: ScopedSlots<IVSelectScopedSlots>;
}