@knapsack/app
Version:
Build Design Systems on top of knapsack, by Basalt
25 lines • 730 B
TypeScript
export default GraphiqlPage;
declare class GraphiqlPage extends React.Component<any, any, any> {
constructor(props: any);
state: {
query: any;
variables: any;
ready: boolean;
response: string;
};
async componentDidMount(): Promise<void>;
render(): JSX.Element;
}
declare namespace GraphiqlPage {
export namespace defaultProps {
export const location: BASE_PATHS;
}
export namespace propTypes {
const location_1: PropTypes.Requireable<object>;
export { location_1 as location };
}
}
import React from "react";
import { BASE_PATHS } from "../../lib/constants";
import PropTypes from "prop-types";
//# sourceMappingURL=graphiql-page.d.ts.map