// 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 { ShellAction } from "./ShellAction"; import type { WebAction } from "./WebAction"; /** * Ein typsicherer Container, der die spezifische Aktion für einen Ressourcentyp enthält. */ export type Action = { "Database": DbAction } | { "Filesystem": FsAction } | { "Web": WebAction } | { "Shell": ShellAction };