15 lines
289 B
TypeScript
15 lines
289 B
TypeScript
type Param = {
|
|
database?: string;
|
|
userId?: string | number;
|
|
};
|
|
type Return = {
|
|
keyCookieName: string;
|
|
csrfCookieName: string;
|
|
oneTimeCodeName: string;
|
|
};
|
|
/**
|
|
* # Grab Auth Cookie Names
|
|
*/
|
|
export default function getAuthCookieNames(params?: Param): Return;
|
|
export {};
|