Files
lightController/src/vueLib/models/Get.ts

16 lines
232 B
TypeScript

type Query = {
depth: number;
};
type Get = {
uuid?: string;
path?: string;
type?: string;
rights?: string;
value?: string | number | boolean | null;
query?: Query;
hasChild?: boolean;
};
export type Gets = Get[];