UNPKG

@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>

22 lines (18 loc) 406 B
declare module '@ryusei/code' { import { Jump } from './Jump'; interface Options { /** * Options for the Jump component. */ jump?: boolean | JumpOptions, } interface JumpOptions { /** * Determines whether to display the current location on the toolbar or not. */ hideLocation?: boolean; } interface Extensions { Jump: Jump; } }