10 lines
345 B
TypeScript
10 lines
345 B
TypeScript
import { type EndpointDisabledEventData } from "./endpointDisabledEventData";
|
|
export interface EndpointDisabledEvent {
|
|
data: EndpointDisabledEventData;
|
|
type: string;
|
|
}
|
|
export declare const EndpointDisabledEventSerializer: {
|
|
_fromJsonObject(object: any): EndpointDisabledEvent;
|
|
_toJsonObject(self: EndpointDisabledEvent): any;
|
|
};
|