10 lines
171 B
TypeScript
10 lines
171 B
TypeScript
/**
|
|
* Auth Page Parameters
|
|
*
|
|
* Input parameters for auth page processing.
|
|
*/
|
|
|
|
export interface AuthPageParams {
|
|
returnTo?: string | null;
|
|
token?: string | null;
|
|
} |