How to use the closeKey function from bindings

Find comprehensive JavaScript bindings.closeKey code examples handpicked from public code repositorys.

212
213
214
215
216
217
218
}

export function closeKey(hkey: HKEY | null | undefined): void {
  if (hkey == null) return; // nicely handle uninitialized
  assert(isHKEY(hkey));
  native.closeKey(hkey);
}
fork icon7
star icon0
watch icon3

Other functions in bindings

Sorted by popularity

function icon

bindings.createKey is the most popular function in bindings (8616 examples)