8 lines
97 B
TypeScript
8 lines
97 B
TypeScript
export interface Param {
|
|
colors: {
|
|
start: string,
|
|
end: string
|
|
};
|
|
points: number;
|
|
}
|