| 1 | export interface Token { |
| 2 | access_token: string; |
| 3 | refresh_token: string; |
| 4 | token_type: string; |
| 5 | expires_in: number; |
| 6 | scope: string; |
| 7 | } |
| 8 | |
| 9 | export interface Workspace { |
| 10 | id: string; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…