From 8a41a1762ee37ae4225dd4d0bd880c1ba042c8ec Mon Sep 17 00:00:00 2001 From: Frederic Tregon Date: Tue, 7 Nov 2023 11:13:23 +0100 Subject: [PATCH] doc(auth): removed duplicate signature and param (#1259) --- documentation/content/reference/lucia/interfaces/auth.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/documentation/content/reference/lucia/interfaces/auth.md b/documentation/content/reference/lucia/interfaces/auth.md index 6f3c1554b..fb460a3d6 100644 --- a/documentation/content/reference/lucia/interfaces/auth.md +++ b/documentation/content/reference/lucia/interfaces/auth.md @@ -66,10 +66,6 @@ const createSession: (options: { userId: string; attributes: Lucia.DatabaseSessionAttributes; }) => Promise; -const createSession: (options: { - userId: string; - attributes: Lucia.DatabaseSessionAttributes; -}) => Promise; ``` ##### Parameters @@ -77,7 +73,6 @@ const createSession: (options: { | name | type | description | | -------------------- | --------------------------------- | ------------------------------------ | | `options.userId` | `string` | The user id of the session to create | -| `options.userId` | `string` | The user id of the session to create | | `options.attributes` | `Lucia.DatabaseSessionAttributes` | Database session attributes | ##### Returns