@salad-labs/loopz-typescript
Version:
The Official Loopz TypeScript SDK
12 lines • 336 B
TypeScript
/**
* Defines a type for a SubscriptionGarbage object that contains an 'unsubscribe' function
* and a 'uuid' string property.
*/
export type SubscriptionGarbage = {
unsubscribe: () => void;
/**
* @property {string} uuid - an uuid identifier.
*/
uuid: string;
};
//# sourceMappingURL=subscriptiongarbage.d.ts.map