Auto-commit 2026-04-29 16:31
This commit is contained in:
13
node_modules/next-auth/providers/todoist.d.ts
generated
vendored
Normal file
13
node_modules/next-auth/providers/todoist.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { OAuthConfig, OAuthUserConfig } from ".";
|
||||
/**
|
||||
* @see https://developer.todoist.com/sync/v9/#user
|
||||
*/
|
||||
interface TodoistProfile extends Record<string, any> {
|
||||
avatar_big: string;
|
||||
email: string;
|
||||
full_name: string;
|
||||
id: string;
|
||||
}
|
||||
export default function TodoistProvider<P extends TodoistProfile>(options: OAuthUserConfig<P>): OAuthConfig<P>;
|
||||
export {};
|
||||
//# sourceMappingURL=todoist.d.ts.map
|
||||
Reference in New Issue
Block a user