@clerk/shared
Version:
Internal package utils used by the Clerk SDKs
18 lines • 464 B
TypeScript
//#region src/internal/clerk-js/queryStateParams.d.ts
declare const readStateParam: () => any;
type SerializeAndAppendModalStateProps = {
url: string;
startPath?: string;
currentPath?: string;
componentName: string;
socialProvider?: string;
};
declare const appendModalState: ({
url,
startPath,
currentPath,
componentName,
socialProvider
}: SerializeAndAppendModalStateProps) => string;
//#endregion
export { appendModalState, readStateParam };