UNPKG

233 BTypeScriptView Raw
1export declare type Dictionary<T> = Record<string, T>;
2export declare type StrictNullable<T> = T | null;
3export declare type Nullable<T> = StrictNullable<T> | undefined;
4export declare type IsInstalled = (id: string) => boolean;