5 lines
88 B
TypeScript
5 lines
88 B
TypeScript
import 'umi/typings';
|
|
declare module 'lodash';
|
|
|
|
export type Nullable<T> = T | null;
|