10 lines
180 B
TypeScript
10 lines
180 B
TypeScript
export type Set = {
|
|
uuid?: string | undefined;
|
|
path: string;
|
|
type?: string;
|
|
value: string | number | boolean | undefined;
|
|
create?: boolean;
|
|
};
|
|
|
|
export type Sets = Set[];
|