@abcpros/bitcore-wallet-service
Version:
A service for Mutisig HD Bitcoin Wallets
23 lines • 536 B
TypeScript
export interface INotification {
version: string;
createdOn: number;
id: number;
type: string;
data: any;
walletId: string;
creatorId: string;
isCreator: boolean;
}
export declare class Notification {
version: string;
createdOn: number;
id: string | number;
type: string;
data: any;
walletId: string;
creatorId: string;
isCreator: boolean;
static create(opts: any): Notification;
static fromObj(obj: any): Notification;
}
//# sourceMappingURL=notification.d.ts.map