mirror of
https://github.com/enso-org/enso.git
synced 2024-11-29 15:21:57 +03:00
8 lines
157 B
TypeScript
8 lines
157 B
TypeScript
|
/** @file Fixups for too loose typings present in lib0. */
|
||
|
|
||
|
import 'lib0/set'
|
||
|
|
||
|
declare module 'lib0/set' {
|
||
|
function first<T>(set: Set<T>): T | undefined
|
||
|
}
|