This repository has been archived on 2026-02-28. You can view files and clone it, but cannot push or open issues or pull requests.
ServerSpacebarOld/src/util/schemas/ConnectionCallbackSchema.ts
2023-03-18 19:09:51 -04:00

8 lines
158 B
TypeScript

export interface ConnectionCallbackSchema {
code?: string;
state: string;
insecure: boolean;
friend_sync: boolean;
openid_params?: any; // TODO: types
}