2
0
Files
guilloche-generator/src/app/models/param.model.ts

17 lines
220 B
TypeScript

export interface Param {
colors: {
start: string,
end: string
};
points: number;
margin: {
x: number,
y: number
};
spread: number;
stroke?: {
width: number;
};
showGrid?: boolean;
}