6 lines
91 B
TypeScript
6 lines
91 B
TypeScript
|
export type ShadingJSON = {
|
||
|
shd_type: string | null;
|
||
|
color: string;
|
||
|
fill: string;
|
||
|
};
|