10 lines
147 B
TypeScript
10 lines
147 B
TypeScript
|
export interface Shape {
|
||
|
borderRadius: number;
|
||
|
}
|
||
|
|
||
|
export type ShapeOptions = Partial<Shape>;
|
||
|
|
||
|
declare const shape: Shape;
|
||
|
|
||
|
export default shape;
|