-
Notifications
You must be signed in to change notification settings - Fork 183
Commit
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
import React from "react"; | ||
import { ViewProps } from "react-native"; | ||
export interface IPlaceholder extends ViewProps { | ||
export interface PlaceholderProps extends ViewProps { | ||
Animation?: React.ComponentType; | ||
Left?: React.ComponentType<ViewProps>; | ||
Right?: React.ComponentType<ViewProps>; | ||
} | ||
export declare const Placeholder: React.FC<IPlaceholder>; | ||
export declare const Placeholder: React.FC<PlaceholderProps>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,10 @@ | ||
import React from "react"; | ||
import { ViewProps } from "react-native"; | ||
export interface ILine extends ViewProps { | ||
export interface PlaceholderLineProps extends ViewProps { | ||
height?: number; | ||
color?: string; | ||
width?: number; | ||
noMargin?: boolean; | ||
style?: ViewProps["style"]; | ||
} | ||
export declare const PlaceholderLine: React.FC<ILine>; | ||
export declare const PlaceholderLine: React.FC<PlaceholderLineProps>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import React from "react"; | ||
import { ViewProps } from "react-native"; | ||
export interface IMedia extends ViewProps { | ||
export interface PlaceholderMediaProps extends ViewProps { | ||
size?: number; | ||
isRound?: boolean; | ||
color?: string; | ||
style?: ViewProps["style"]; | ||
} | ||
export declare const PlaceholderMedia: React.FC<IMedia>; | ||
export declare const PlaceholderMedia: React.FC<PlaceholderMediaProps>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,6 @@ | ||
import React from "react"; | ||
import { ViewProps } from "react-native"; | ||
export interface IFade extends ViewProps { | ||
export interface FadeProps extends ViewProps { | ||
duration?: number; | ||
} | ||
export declare class Fade extends React.Component<IFade> { | ||
static defaultProps: { | ||
duration: number; | ||
}; | ||
private animation; | ||
constructor(props: IFade); | ||
componentDidMount(): void; | ||
render(): JSX.Element; | ||
private start; | ||
} | ||
export declare const Fade: React.FC<FadeProps>; |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.