We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eadb9b3 commit 29f0646Copy full SHA for 29f0646
1 file changed
src/types/models.ts
@@ -14,7 +14,21 @@
14
* limitations under the License.
15
*/
16
17
-import { AttestationData } from '../ui/views/PushDetails/attestation.types';
+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
32
33
export interface UserData {
34
id: string;
0 commit comments