mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
# Conflicts: # convict/convict.d.ts # multer/multer.d.ts # nodemailer/nodemailer.d.ts # react-bootstrap-table/react-bootstrap-table.d.ts # react-dnd/react-dnd-tests.ts # react-native/index.d.ts # request/request.d.ts # restify/index.d.ts # webpack/webpack.d.ts # ws/ws.d.ts
15 lines
527 B
TypeScript
15 lines
527 B
TypeScript
// Type definitions for React DnD HTML 5 Backend v2.0.0
|
|
// Project: https://github.com/gaearon/react-dnd
|
|
// Definitions by: Asana <https://asana.com>
|
|
// Definitions: https://github.com/borisyankov/DefinitelyTyped
|
|
|
|
declare module "react-dnd-html5-backend" {
|
|
export namespace NativeTypes {
|
|
export const FILE: string;
|
|
export const URL: string;
|
|
export const TEXT: string;
|
|
}
|
|
export function getEmptyImage(): any; // Image
|
|
export default class HTML5Backend implements __ReactDnd.Backend { }
|
|
}
|