Files
start-sdk/lib/health/HealthReceipt.ts
2023-04-07 11:43:05 -06:00

5 lines
99 B
TypeScript

declare const HealthProof: unique symbol;
export type HealthReceipt = {
[HealthProof]: never;
};