SYMBOL INDEX (87 symbols across 25 files) FILE: example/src/router.ts function createRouter (line 21) | function createRouter() { FILE: packages/useBoolean/index.ts type Actions (line 7) | interface Actions{ function useBoolean (line 21) | function useBoolean (value?: boolean){ FILE: packages/useCookie/index.ts type Options (line 4) | interface Options{ FILE: packages/useDate/index.ts type Value (line 10) | type Value = string | number | Date; type Options (line 12) | interface Options{ function useDate (line 26) | function useDate( initialValue?:Value, options?: Options ){ FILE: packages/useExternal/index.ts type Elements (line 3) | type Elements = HTMLScriptElement| HTMLLinkElement | HTMLImageElement; type Options (line 5) | interface Options{ FILE: packages/useFullscreen/index.ts type Options (line 3) | interface Options{ type Actions (line 7) | interface Actions{ type Target (line 13) | type Target = HTMLElement | ( () => HTMLElement ) | Ref; FILE: packages/useInterval/index.ts type UseIntervalOptions (line 4) | interface UseIntervalOptions{ FILE: packages/useLocalStorage/index.ts type Options (line 4) | interface Options{ FILE: packages/useLockFn/index.ts type ArgsAny (line 3) | type ArgsAny = any[]; type Fn (line 5) | type Fn = (...args: ArgsAny)=> Promise; FILE: packages/useMap/index.ts type MapValue (line 4) | type MapValue = readonly (readonly [any, any])[] type Actions (line 6) | interface Actions{ function useMap (line 21) | function useMap(initialValue?:MapValue){ FILE: packages/useNetwork/index.ts type NetworkState (line 11) | interface NetworkState { FILE: packages/useQRCode/index.ts type Text (line 4) | type Text = Ref | string; type useQRCodeOptions (line 6) | interface useQRCodeOptions{ method onRenderingEnd (line 30) | onRenderingEnd(qrCodeOptions:any, dataURL:string){ FILE: packages/useRequest/__tests__/index.test.ts method setup (line 59) | setup() { method setup (line 92) | setup() { method setup (line 112) | setup() { method setup (line 146) | setup() { method setup (line 185) | setup() { method setup (line 214) | setup() { method setup (line 229) | setup() { method setup (line 245) | setup() { method setup (line 263) | setup() { method setup (line 294) | setup() { method setup (line 311) | setup() { method setup (line 329) | setup() { method setup (line 356) | setup() { method setup (line 372) | setup() { method setup (line 389) | setup() { method setup (line 404) | setup() { method setup (line 421) | setup() { method setup (line 439) | setup() { method setup (line 455) | setup() { method setup (line 473) | setup() { method setup (line 492) | setup() { method setup (line 508) | setup() { FILE: packages/useRequest/src/fetch.ts type FetchParams (line 1) | interface FetchParams extends RequestInit{ function fetchData (line 23) | function fetchData( p:FetchParams ){ FILE: packages/useRequest/src/polling.ts class Polling (line 6) | class Polling{ method constructor (line 10) | constructor() { method run (line 16) | run( method cancel (line 27) | cancel(){ method task (line 31) | private task( FILE: packages/useRequest/types.d.ts type Service (line 5) | type Service = (...args: any[]) => Promise; type FetchService (line 7) | interface FetchService extends FetchParams{} type BaseOptions (line 11) | interface BaseOptions { type Run (line 33) | type Run = (...args: any[])=> void; type Refresh (line 36) | type Refresh = ()=> void; type Cancel (line 39) | type Cancel = (()=> void); type Mutate (line 42) | type Mutate = (state:any)=> void; type Result (line 46) | interface Result { FILE: packages/useSessionStorage/index.ts type Options (line 4) | interface Options{ FILE: packages/useSet/index.ts type Actions (line 3) | interface Actions{ function useSet (line 16) | function useSet(initialValue?:T[]){ FILE: packages/useTextSelection/index.ts type Target (line 10) | type Target = HTMLElement | Ref | (() => HTMLElement ) | Do... FILE: packages/useToggle/index.ts type State (line 4) | type State = string | number | boolean | undefined; type RefState (line 5) | type RefState = Ref type Fn (line 7) | type Fn = (v?:any)=> void; type Actions (line 9) | type Actions = Fn[]; function useToggle (line 21) | function useToggle(...args: (T | U)... FILE: packages/useVirtualList/index.ts type OptionType (line 3) | interface OptionType { FILE: packages/useWebSocket/index.ts type UseWebSocketOptions (line 4) | interface UseWebSocketOptions { type ReadyState (line 13) | enum ReadyState { type Result (line 19) | interface Result{ function useWebSocket (line 44) | function useWebSocket( FILE: packages/utils/index.ts type Fn (line 1) | type Fn = (...[]: any[])=> any; type Serializer (line 64) | type Serializer = { FILE: packages/utils/memoryCache.ts type Timer (line 2) | interface Timer { type Options (line 5) | interface Options{ class MemoryCache (line 9) | class MemoryCache{ method constructor (line 13) | constructor(options?:Options){ method put (line 26) | put( method get (line 61) | get( method has (line 73) | has( method del (line 84) | del( method clear (line 99) | clear(){ method size (line 112) | size(){ FILE: packages/utils/testingHelpers.ts function sleep (line 1) | function sleep(time:number) {