From 8397cd52a5ec915a0b5e85d337cfcc38f4aaa63f Mon Sep 17 00:00:00 2001 From: Steven Guerrero <42647963+Soremwar@users.noreply.github.com> Date: Mon, 13 Apr 2020 12:15:18 -0500 Subject: Refactor std/types (#4713) --- std/types/react-dom.d.ts | 125 ----------------------------------------------- 1 file changed, 125 deletions(-) delete mode 100644 std/types/react-dom.d.ts (limited to 'std/types/react-dom.d.ts') diff --git a/std/types/react-dom.d.ts b/std/types/react-dom.d.ts deleted file mode 100644 index 3be59411f..000000000 --- a/std/types/react-dom.d.ts +++ /dev/null @@ -1,125 +0,0 @@ -// These types are adapted from -// https://github.com/DefinitelyTyped/DefinitelyTyped to work under Deno. -// -// Type definitions for React (react-dom) 16.9 -// Project: http://facebook.github.io/react/ -// Definitions by: Asana -// AssureSign -// Microsoft -// MartynasZilinskas -// Josh Rutherford -// Jessica Franco -// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped -// TypeScript Version: 2.8 - -// NOTE: Users of the `experimental` builds of React should add a reference -// to 'react-dom/experimental' in their project. See experimental.d.ts's top comment -// for reference and documentation on how exactly to do it. - -/* eslint-disable */ - -export as namespace ReactDOM; - -import { - ReactInstance, - Component, - ComponentState, - ReactElement, - SFCElement, - CElement, - DOMAttributes, - DOMElement, - ReactNode, - ReactPortal, -} from "./react.d.ts"; - -export function findDOMNode( - instance: ReactInstance | null | undefined -): Element | null | Text; -export function unmountComponentAtNode(container: Element): boolean; - -export function createPortal( - children: ReactNode, - container: Element, - key?: null | string -): ReactPortal; - -export const version: string; -export const render: Renderer; -export const hydrate: Renderer; - -export function unstable_batchedUpdates( - callback: (a: A, b: B) => any, - a: A, - b: B -): void; -export function unstable_batchedUpdates(callback: (a: A) => any, a: A): void; -export function unstable_batchedUpdates(callback: () => any): void; - -export function unstable_renderSubtreeIntoContainer( - parentComponent: Component, - element: DOMElement, T>, - container: Element, - callback?: (element: T) => any -): T; -export function unstable_renderSubtreeIntoContainer< - P, - T extends Component ->( - parentComponent: Component, - element: CElement, - container: Element, - callback?: (component: T) => any -): T; -export function unstable_renderSubtreeIntoContainer

( - parentComponent: Component, - element: ReactElement

, - container: Element, - callback?: (component?: Component | Element) => any -): Component | Element | void; - -export interface Renderer { - // Deprecated(render): The return value is deprecated. - // In future releases the render function's return type will be void. - - ( - element: DOMElement, T>, - container: Element | null, - callback?: () => void - ): T; - - ( - element: Array, any>>, - container: Element | null, - callback?: () => void - ): Element; - - ( - element: SFCElement | Array>, - container: Element | null, - callback?: () => void - ): void; - - >( - element: CElement, - container: Element | null, - callback?: () => void - ): T; - - ( - element: Array>>, - container: Element | null, - callback?: () => void - ): Component; - -

( - element: ReactElement

, - container: Element | null, - callback?: () => void - ): Component | Element | void; - - (element: ReactElement[], container: Element | null, callback?: () => void): - | Component - | Element - | void; -} -- cgit v1.2.3