// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually. import type { DbAction } from "./DbAction"; import type { FsAction } from "./FsAction"; import type { HttpAction } from "./HttpAction"; import type { ShellAction } from "./ShellAction"; /** * Ein typsicherer Container, der die spezifische Aktion für einen Ressourcentyp enthält. */ export type Action = { "Database": DbAction } | { "Filesystem": FsAction } | { "Http": HttpAction } | { "Shell": ShellAction };