UNPKG

180 BTypeScriptView Raw
1import { StatusCode } from '@shopify/network';
2interface Props {
3 url: string;
4 code?: StatusCode;
5}
6export default function Redirect({ url, code }: Props): null;
7export {};