forked from jsnbuchanan/crowd-funder-for-time-pwa
- Add name, description, and agent as optional properties to GenericVerifiableCredential - Improve type safety and IntelliSense for common claim properties - Maintain backward compatibility with existing code - Reduce need for type assertions when accessing claim properties
10 lines
214 B
TypeScript
10 lines
214 B
TypeScript
export interface UserProfile {
|
|
description: string;
|
|
locLat?: number;
|
|
locLon?: number;
|
|
locLat2?: number;
|
|
locLon2?: number;
|
|
issuerDid?: string;
|
|
rowId?: string; // set on profile retrieved from server
|
|
}
|