summary refs log tree commit diff
path: root/src/util/schemas/ConnectionCallbackSchema.ts
blob: 09ae8a466733b48c33d07e04c3a51b830584a065 (plain) (blame)
1
2
3
4
5
6
7
export interface ConnectionCallbackSchema {
	code?: string;
	state: string;
	insecure: boolean;
	friend_sync: boolean;
	openid_params?: any; // TODO: types
}