Skip to content

Commit

Permalink
[lint] Bump eslint-config-universe to 3.0.0 (expo#7592)
Browse files Browse the repository at this point in the history
This bumps eslint-config-universe to 3.0.0 (published to npm) and update expo-module-scripts to use the latest version.

Tested with `yarn test` and `yarn lint` in eslint-config-universe, and `expotools check-packages`.
  • Loading branch information
ide committed Apr 2, 2020
1 parent 772ff49 commit 04a5b55
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
5 changes: 4 additions & 1 deletion build/Video.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import PropTypes from 'prop-types';
import * as React from 'react';
import { NativeMethods } from 'react-native';
import { Playback, AVPlaybackSource, AVPlaybackStatus, AVPlaybackStatusToSet, AVPlaybackNativeSource } from './AV';
import { ExponentVideoComponent, VideoFullscreenUpdateEvent, VideoNativeProps, VideoNaturalSize, VideoProps, VideoReadyForDisplayEvent, ResizeMode, VideoState } from './Video.types';
export { ExponentVideoComponent, VideoFullscreenUpdateEvent, VideoNativeProps, VideoNaturalSize, VideoProps, VideoReadyForDisplayEvent, ResizeMode, VideoState, AVPlaybackStatus, AVPlaybackStatusToSet, AVPlaybackNativeSource, };
Expand Down Expand Up @@ -69,13 +70,15 @@ export default class Video extends React.Component<VideoProps, VideoState> imple
accessibilityStates?: PropTypes.Validator<import("react-native").AccessibilityStates[] | undefined> | undefined;
accessibilityState?: PropTypes.Validator<import("react-native").AccessibilityState | undefined> | undefined;
accessibilityHint?: PropTypes.Validator<string | undefined> | undefined;
accessibilityValue?: PropTypes.Validator<import("react-native").AccessibilityValue | undefined> | undefined;
onAccessibilityAction?: PropTypes.Validator<((event: import("react-native").AccessibilityActionEvent) => void) | undefined> | undefined;
accessibilityComponentType?: PropTypes.Validator<"none" | "button" | "radiobutton_checked" | "radiobutton_unchecked" | undefined> | undefined;
accessibilityLiveRegion?: PropTypes.Validator<"none" | "polite" | "assertive" | undefined> | undefined;
importantForAccessibility?: PropTypes.Validator<"auto" | "yes" | "no" | "no-hide-descendants" | undefined> | undefined;
accessibilityElementsHidden?: PropTypes.Validator<boolean | undefined> | undefined;
accessibilityTraits?: PropTypes.Validator<"key" | "none" | "button" | "header" | "link" | "summary" | "image" | "text" | "search" | "adjustable" | "disabled" | "selected" | "plays" | "frequentUpdates" | "startsMedia" | "allowsDirectInteraction" | "pageTurn" | import("react-native").AccessibilityTrait[] | undefined> | undefined;
accessibilityViewIsModal?: PropTypes.Validator<boolean | undefined> | undefined;
onAccessibilityEscape?: PropTypes.Validator<(() => void) | undefined> | undefined;
onAccessibilityTap?: PropTypes.Validator<(() => void) | undefined> | undefined;
onMagicTap?: PropTypes.Validator<(() => void) | undefined> | undefined;
accessibilityIgnoresInvertColors?: PropTypes.Validator<boolean | undefined> | undefined;
Expand Down Expand Up @@ -121,7 +124,7 @@ export default class Video extends React.Component<VideoProps, VideoState> imple
translateY: PropTypes.Requireable<number>;
rotation: PropTypes.Requireable<number>;
};
_nativeRef: React.RefObject<React.Component<VideoNativeProps, any, any> & import("react-native").NativeMethodsMixinStatic>;
_nativeRef: React.RefObject<React.Component<VideoNativeProps, any, any> & NativeMethods>;
_onPlaybackStatusUpdate: ((status: AVPlaybackStatus) => void) | null;
constructor(props: VideoProps);
setNativeProps(nativeProps: VideoNativeProps): void;
Expand Down

0 comments on commit 04a5b55

Please sign in to comment.