Adding ability to list projects from Azure DevOps organization

Signed-off-by: Callen Barton <7515844+cal5barton@users.noreply.github.com>
This commit is contained in:
Callen Barton
2022-07-07 09:46:31 -06:00
parent 8754ab6fac
commit e67c4b7d5a
5 changed files with 41 additions and 2 deletions
+6
View File
@@ -288,3 +288,9 @@ export type BuildRun = {
export type BuildRunOptions = {
top?: number;
};
export type Project = {
id?: string;
name?: string;
description?: string;
};