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

5 lines
108 B
TypeScript

declare const InterfaceProof: unique symbol;
export type InterfaceReceipt = {
[InterfaceProof]: never;
};