Files
2024-12-17 13:23:11 -08:00

10 lines
147 B
TypeScript

export interface Shape {
borderRadius: number;
}
export type ShapeOptions = Partial<Shape>;
declare const shape: Shape;
export default shape;