| 1 | import {createContext, Dispatch, ReactNode, SetStateAction, useContext, useEffect, useState} from 'react'; |
| 2 | |
| 3 | interface Preferences { |
| 4 | indent: number; |
| 5 | } |
| 6 | |
| 7 | const PreferencesDefaults: Preferences = { |
| 8 | indent: 2, |
nothing calls this directly
no outgoing calls
no test coverage detected