Variable localStorageServiceConst
localStorageService: {
getItem: (key: string) => null | string;
removeItem: (key: string) => void;
setItem: (key: string, value: string) => void;
} = ...
Type declaration
getItem: (key: string) => null | string
removeItem: (key: string) => void
setItem: (key: string, value: string) => void