@bexis2/bexis2-rpm-ui
Version:
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
19 lines (18 loc) • 578 B
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { DataStructureModel } from '../types';
declare const __propDef: {
props: {
model: DataStructureModel;
valid?: boolean;
};
events: {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export type AttributesProps = typeof __propDef.props;
export type AttributesEvents = typeof __propDef.events;
export type AttributesSlots = typeof __propDef.slots;
export default class Attributes extends SvelteComponentTyped<AttributesProps, AttributesEvents, AttributesSlots> {
}
export {};