8 lines
122 B
TypeScript
8 lines
122 B
TypeScript
|
export type BorderJSON = {
|
||
|
position: string;
|
||
|
borderType: string;
|
||
|
size: number;
|
||
|
space: number;
|
||
|
color: string;
|
||
|
};
|