| 11 | } |
| 12 | |
| 13 | export interface FittyInstance { |
| 14 | element: HTMLElement; |
| 15 | fit: (options?: FitOptions) => void; |
| 16 | freeze: () => void; |
| 17 | unfreeze: () => void; |
| 18 | unsubscribe: () => void; |
| 19 | } |
| 20 | |
| 21 | function fitty(el: HTMLElement, options?: FittyOptions): FittyInstance; |
| 22 | function fitty(el: string, options?: FittyOptions): FittyInstance[]; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…