NovaECS - v1.0.11
    Preparing search index...

    Interface Serde<T>

    Serialization interface for components 组件序列化接口

    interface Serde<T> {
        fromJSON(data: any): T;
        toJSON(v: T): any;
    }

    Type Parameters

    • T
    Index

    Methods