Preview:```ts
declare function isObject(obj: unknown): obj is object;
declare function isArrayLike<T>(obj: object, guard?: (element: unknown) => element is T): obj is ArrayLike<T>;
declare const valid: unique symbol;
declare type SpecialArrayLike<T> = ArrayLike<T> & { [valid]: true };
...```
You can choose specific lines to embed by selecting them before copying the link.