UNPKG

dext5upload-vue3

Version:

Vue3 + TypeScript component for DEXT5 Upload

19 lines (18 loc) 419 B
/** * @license Copyright (c) 2003-2022, RAONWIZ DevTeam. All rights reserved. */ export type CopyProps<T> = { [P in keyof T]: any; }; export interface IPropTypes { debug: boolean; id: string; skinName: string; componentUrl: string; config: object; disabled: boolean; mode: string; tagName: string; createMode: string; } export declare const uploadProps: CopyProps<IPropTypes>;