14 lines
421 B
TypeScript
14 lines
421 B
TypeScript
import { type ConnectorOut } from "./connectorOut";
|
|
import { type EventTypeOut } from "./eventTypeOut";
|
|
export interface EnvironmentOut {
|
|
connectors: ConnectorOut[];
|
|
createdAt: Date;
|
|
eventTypes: EventTypeOut[];
|
|
settings: any | null;
|
|
version?: number;
|
|
}
|
|
export declare const EnvironmentOutSerializer: {
|
|
_fromJsonObject(object: any): EnvironmentOut;
|
|
_toJsonObject(self: EnvironmentOut): any;
|
|
};
|