mirror of
https://github.com/haexhub/haex-hub.git
synced 2025-12-17 06:30:50 +01:00
refactored install dialog
This commit is contained in:
19
src-tauri/bindings/PermissionEntry.ts
Normal file
19
src-tauri/bindings/PermissionEntry.ts
Normal file
@ -0,0 +1,19 @@
|
||||
// This file was generated by [ts-rs](https://github.com/Aleph-Alpha/ts-rs). Do not edit this file manually.
|
||||
import type { PermissionStatus } from "./PermissionStatus";
|
||||
|
||||
/**
|
||||
* Repräsentiert einen einzelnen Berechtigungseintrag im Manifest und im UI-Modell.
|
||||
*/
|
||||
export type PermissionEntry = { target: string,
|
||||
/**
|
||||
* Die auszuführende Aktion (z.B. "read", "read_write", "GET", "execute").
|
||||
*/
|
||||
operation?: string | null,
|
||||
/**
|
||||
* Optionale, spezifische Einschränkungen für diese Berechtigung.
|
||||
*/
|
||||
constraints?: Record<string, unknown>,
|
||||
/**
|
||||
* Der Status der Berechtigung (wird nur im UI-Modell verwendet).
|
||||
*/
|
||||
status?: PermissionStatus | null, };
|
||||
Reference in New Issue
Block a user