Revert "Move frontend package types out of typescript-typings since this package will be used in both node and browser contexts"
This reverts commit 74483631d0
.
This commit is contained in:
1
packages/typescript-typings/types/react-highlight/index.d.ts
vendored
Normal file
1
packages/typescript-typings/types/react-highlight/index.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
declare module 'react-highlight';
|
49
packages/typescript-typings/types/react-popper/index.d.ts
vendored
Normal file
49
packages/typescript-typings/types/react-popper/index.d.ts
vendored
Normal file
@@ -0,0 +1,49 @@
|
||||
// Type definitions for react-popper 1.0.0-beta.6
|
||||
// Project: https://github.com/gilbarbara/react-joyride
|
||||
|
||||
declare module 'react-popper' {
|
||||
import * as React from 'react';
|
||||
import * as PopperJS from 'popper.js';
|
||||
|
||||
interface ManagerProps {
|
||||
children: React.ReactNode;
|
||||
}
|
||||
export class Manager extends React.Component<ManagerProps, {}> {}
|
||||
|
||||
type RefHandler = (ref: HTMLElement | null) => void;
|
||||
|
||||
export interface ReferenceChildrenProps {
|
||||
ref: RefHandler;
|
||||
}
|
||||
|
||||
export interface ReferenceProps {
|
||||
children: (props: ReferenceChildrenProps) => React.ReactNode;
|
||||
}
|
||||
export class Reference extends React.Component<ReferenceProps, {}> {}
|
||||
|
||||
export interface PopperArrowProps {
|
||||
ref: RefHandler;
|
||||
style: React.CSSProperties;
|
||||
}
|
||||
|
||||
export type Placement = PopperJS.Placement;
|
||||
|
||||
export interface PopperChildrenProps {
|
||||
arrowProps: PopperArrowProps;
|
||||
outOfBoundaries: boolean | null;
|
||||
placement: PopperJS.Placement;
|
||||
ref: RefHandler;
|
||||
scheduleUpdate: () => void;
|
||||
style: React.CSSProperties;
|
||||
}
|
||||
|
||||
export interface PopperProps {
|
||||
children: (props: PopperChildrenProps) => React.ReactNode;
|
||||
eventsEnabled?: boolean;
|
||||
modifiers?: PopperJS.Modifiers;
|
||||
placement?: PopperJS.Placement;
|
||||
positionFixed?: boolean;
|
||||
referenceElement?: Element;
|
||||
}
|
||||
export class Popper extends React.Component<PopperProps, {}> {}
|
||||
}
|
1
packages/typescript-typings/types/react-tooltip/index.d.ts
vendored
Normal file
1
packages/typescript-typings/types/react-tooltip/index.d.ts
vendored
Normal file
@@ -0,0 +1 @@
|
||||
declare module 'react-tooltip';
|
Reference in New Issue
Block a user