forked from MapComplete/MapComplete
7 lines
138 B
TypeScript
7 lines
138 B
TypeScript
|
|
export interface AuthConfig {
|
||
|
|
"#"?: string // optional comment
|
||
|
|
oauth_client_id: string
|
||
|
|
oauth_secret: string
|
||
|
|
url: string
|
||
|
|
}
|