xiot-core-spec-ts
Version:
XIOT Specification Codec
9 lines (8 loc) • 360 B
TypeScript
import { NoticeCodec } from '../../typedef/notice/NoticeCodec';
import { OwnerNotice } from '../../typedef/notice/owner/OwnerNotice';
export declare class OwnerNoticeCodec extends NoticeCodec<OwnerNotice, any> {
mainType(): string;
encode(x: OwnerNotice): any;
decode(subType: string, o: any): OwnerNotice;
decodeObject(o: any): OwnerNotice;
}