12 lines
385 B
TypeScript
12 lines
385 B
TypeScript
import { type ConnectorIn } from "./connectorIn";
|
|
import { type EventTypeIn } from "./eventTypeIn";
|
|
export interface EnvironmentIn {
|
|
connectors?: ConnectorIn[] | null;
|
|
eventTypes?: EventTypeIn[] | null;
|
|
settings?: any | null;
|
|
}
|
|
export declare const EnvironmentInSerializer: {
|
|
_fromJsonObject(object: any): EnvironmentIn;
|
|
_toJsonObject(self: EnvironmentIn): any;
|
|
};
|