UNPKG

dext5upload-vue3

Version:

Vue3 + TypeScript component for DEXT5 Upload

11 lines (10 loc) 550 B
/** * @license Copyright (c) 2003-2022, RAONWIZ DevTeam. All rights reserved. */ import { SetupContext } from 'vue'; declare const isValidKey: (key: string) => boolean; declare const bindHandlers: (uploadId: string, listeners: Record<string, any>) => void; declare const setUpComponentEvents: (uploadId: string, ctx: SetupContext) => void; declare const uuid: (prefix: string) => string; declare const isNullOrUndefined: (value: any) => value is null | undefined; export { bindHandlers, setUpComponentEvents, isValidKey, uuid, isNullOrUndefined };