Skip to content

Commit 29f0646

Browse files
committed
chore: merge upstream main
1 parent eadb9b3 commit 29f0646

1 file changed

Lines changed: 15 additions & 1 deletion

File tree

src/types/models.ts

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,21 @@
1414
* limitations under the License.
1515
*/
1616

17-
import { AttestationData } from '../ui/views/PushDetails/attestation.types';
17+
interface AttestationReviewer {
18+
username: string;
19+
gitAccount: string;
20+
}
21+
22+
interface AttestationQuestion {
23+
label: string;
24+
checked: boolean;
25+
}
26+
27+
export interface AttestationData {
28+
reviewer: AttestationReviewer;
29+
timestamp: string | Date;
30+
questions: AttestationQuestion[];
31+
}
1832

1933
export interface UserData {
2034
id: string;

0 commit comments

Comments
 (0)