| 3 | import { EventEmitter } from 'events'; |
| 4 | |
| 5 | export interface ProviderToken { |
| 6 | /** |
| 7 | * The filename of the provider token key (as supplied by Apple) to load from disk, or a Buffer/String containing the key data. |
| 8 | */ |
| 9 | key: Buffer|string; |
| 10 | /** |
| 11 | * The ID of the key issued by Apple |
| 12 | */ |
| 13 | keyId: string; |
| 14 | /** |
| 15 | * ID of the team associated with the provider token key |
| 16 | */ |
| 17 | teamId: string; |
| 18 | } |
| 19 | |
| 20 | export interface ProviderOptions { |
| 21 | /** |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…