diff options
Diffstat (limited to 'src/util/schemas/ConnectionCallbackSchema.ts')
-rw-r--r-- | src/util/schemas/ConnectionCallbackSchema.ts | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/util/schemas/ConnectionCallbackSchema.ts b/src/util/schemas/ConnectionCallbackSchema.ts new file mode 100644 index 00000000..09ae8a46 --- /dev/null +++ b/src/util/schemas/ConnectionCallbackSchema.ts @@ -0,0 +1,7 @@ +export interface ConnectionCallbackSchema { + code?: string; + state: string; + insecure: boolean; + friend_sync: boolean; + openid_params?: any; // TODO: types +} |