16 lines
232 B
TypeScript
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[];
|