react-web-native-sketch
Version:
[TODO: We need an overview of how this can be used via npm vs as a local package]
17 lines (16 loc) • 591 B
TypeScript
import * as React from "react";
export declare const NetworkImage: {
new (props: any, context?: any): {
render(): null;
setState<K extends never>(state: {} | ((prevState: Readonly<{}>, props: any) => {} | Pick<{}, K>) | Pick<{}, K>, callback?: (() => void) | undefined): void;
forceUpdate(callBack?: (() => void) | undefined): void;
props: Readonly<{
children?: React.ReactNode;
}> & Readonly<any>;
state: Readonly<{}>;
context: any;
refs: {
[key: string]: React.ReactInstance;
};
};
};