@ryusei/code
Version:
<div align="center"> <a href="https://code.ryuseijs.com"> <img alt="RyuseiCode" src="https://code.ryuseijs.com/images/svg/logo.svg" width="70"> </a>
27 lines (22 loc) • 521 B
TypeScript
declare module '@ryusei/code' {
import { Resize } from './Resize';
interface Options {
/**
* Options for the Resize component.
*/
resize?: boolean | ResizeOptions,
}
interface ResizeOptions {
/**
* Determines whether to enable or disable the horizontal resize.
*/
horizontal: boolean;
/**
* Determines whether to enable or disable the vertical resize.
*/
vertical: boolean;
}
interface Extensions {
Resize: Resize;
}
}