/**endpoint 生命周期 */ export declare const enum ENDPOINT_LIFECYCLE_STATE { INIT = "init", OPENING = "opening", OPENED = "opened", CLOSING = "closing", CLOSED = "closed" } /**如果此处增加协议,需要注意endpoint的转码*/ export declare const enum ENDPOINT_PROTOCOL { JSON = "JSON", CBOR = "CBOR" } export type $EndpointLifecycleStateBase = ReturnType>; export declare const endpointLifecycleStateBase: (state: S) => { readonly state: S; }; //# sourceMappingURL=EndpointLifecycle.d.ts.map