mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-17 14:30:52 +01:00
11 lines
524 B
TypeScript
11 lines
524 B
TypeScript
// 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 };
|