@intuitionrobotics/thunderstorm
Version:
14 lines (13 loc) • 326 B
TypeScript
import * as React from 'react';
type Props = {
src: string;
onLoaded: (src: string) => void;
};
export declare class SimpleScriptInjector extends React.Component<Props> {
static readonly injected: {
[src: string]: HTMLScriptElement;
};
componentDidMount(): void;
render(): string;
}
export {};