UNPKG

@atomist/automation-client

Version:

Atomist API for software low-level client

10 lines 369 B
/** * Tag interface for credentials for working with projects */ export interface ProjectOperationCredentials { } export interface TokenCredentials extends ProjectOperationCredentials { token: string; } export declare function isTokenCredentials(poc: ProjectOperationCredentials): poc is TokenCredentials; //# sourceMappingURL=ProjectOperationCredentials.d.ts.map