@ismail424/svelte-formly
Version:
<p align="center"> <img width="100%" height="300" src="./logo.png" alt="Svelte Formly" /> </p>
37 lines (36 loc) • 1.06 kB
TypeScript
import { SvelteComponentTyped } from "svelte";
import type { IField } from '../../utils';
declare const __propDef: {
props: {
field: IField;
};
events: {
changeValue: CustomEvent<{
name: string;
value: {
name: string;
type: string;
size: number;
blob: File;
fileId: string;
isStoredFile?: false | undefined;
} | {
name: string;
type: string;
size: number;
blob: File;
fileId: string;
isStoredFile?: false | undefined;
}[] | null;
}>;
} & {
[evt: string]: CustomEvent<any>;
};
slots: {};
};
export declare type FileProps = typeof __propDef.props;
export declare type FileEvents = typeof __propDef.events;
export declare type FileSlots = typeof __propDef.slots;
export default class File extends SvelteComponentTyped<FileProps, FileEvents, FileSlots> {
}
export {};