6 lines
94 B
TypeScript
6 lines
94 B
TypeScript
export interface SizeOptions {
|
|
width?: string
|
|
height?: string
|
|
ratio?: number | string
|
|
}
|