diff options
| author | geireann <geireann.lindfield@gmail.com> | 2021-08-18 11:01:57 -0400 |
|---|---|---|
| committer | geireann <geireann.lindfield@gmail.com> | 2021-08-18 11:01:57 -0400 |
| commit | cc89a0c16246afde8bb3d891a4ede492b6644b1f (patch) | |
| tree | 25df837ebc2c3dfcad0944955ee1bf05acb1d23e /src/Utils.ts | |
| parent | 31041229447807fd3d121dea96996a6543bd9272 (diff) | |
added search linking
Diffstat (limited to 'src/Utils.ts')
| -rw-r--r-- | src/Utils.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Utils.ts b/src/Utils.ts index 194c38a6f..f9ca8646f 100644 --- a/src/Utils.ts +++ b/src/Utils.ts @@ -439,6 +439,7 @@ export function emptyFunction() { } export function unimplementedFunction() { throw new Error("This function is not implemented, but should be."); } + export type Without<T, K extends keyof T> = Pick<T, Exclude<keyof T, K>>; export type Predicate<K, V> = (entry: [K, V]) => boolean; |
