UNPKG

kui-shell

Version:

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

9 lines (8 loc) 251 B
interface SessionStorage { getItem: (key: string) => string; setItem: (key: string, value: string) => void; removeItem: (key: string) => void; clear: () => void; } declare const _default: () => SessionStorage; export default _default;