@intuitionrobotics/bug-report
Version:
13 lines (12 loc) • 383 B
TypeScript
import { BaseComponent } from "@intuitionrobotics/thunderstorm/app-frontend/core/BaseComponent";
import * as React from "react";
type Props = {
url: string;
};
export declare class Dialog_JiraOpened extends BaseComponent<Props, {}> {
constructor(props: Props);
static show(url: string): void;
redirectToJira: () => void;
render(): React.JSX.Element;
}
export {};