UNPKG

react-simple-hook-modal

Version:
8 lines (7 loc) 229 B
import React from 'react'; export interface Context { addOrUpdate(id: string): void; remove(id: string): void; getStaggerPixels(id: string): number; } export declare const ModalContext: React.Context<Context>;