UNPKG

kui-shell

Version:

This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool

11 lines (10 loc) 316 B
/// <reference types="node" /> interface ScrollOptions { when?: number; which?: string; element?: HTMLElement; how?: 'scrollIntoViewIfNeeded' | 'scrollIntoView'; center?: boolean | ScrollIntoViewOptions; } export declare const scrollIntoView: (opts?: ScrollOptions) => NodeJS.Timeout; export {};