Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/denops_std/option/types.ts>Option

📚 Standard module for denops.vim
Go to Latest
type alias Option
import { type Option } from "https://deno.land/x/denops_std@v5.2.0/option/types.ts";

An option that can be retrieved and modified.

Type Parameters

T

The type of the option value.

definition: { get(denops: Denops): Promise<T>; set(denops: Denops, value: T): Promise<void>; reset(denops: Denops): Promise<void>; }