10 lines
321 B
TypeScript
10 lines
321 B
TypeScript
/// <reference types="react" />
|
|
import { Theme } from "../..";
|
|
import { InternalUrl } from "../../utils/parse-url";
|
|
export interface SignoutProps {
|
|
url: InternalUrl;
|
|
csrfToken: string;
|
|
theme: Theme;
|
|
}
|
|
export default function SignoutPage(props: SignoutProps): JSX.Element;
|
|
//# sourceMappingURL=signout.d.ts.map
|