add timing & animation details to stats-world

This commit is contained in:
2023-05-28 09:11:37 -06:00
parent 9f49234179
commit b0fc8818ee
6 changed files with 61 additions and 2 deletions

View File

@@ -1,6 +1,15 @@
export const SCHEMA_ORG_CONTEXT = "https://schema.org";
export const SERVICE_ID = "endorser.ch";
export interface GenericClaim {
"@context": string;
"@type": string;
issuedAt: string;
// "any" because arbitrary objects can be subject of agreement
// eslint-disable-next-line @typescript-eslint/no-explicit-any
claim: Record<any, any>;
}
export interface AgreeVerifiableCredential {
"@context": string;
"@type": string;