6 lines
145 B
TypeScript
6 lines
145 B
TypeScript
export function getFromStorage(key: string): string | null {
|
|
return null;
|
|
}
|
|
|
|
export function setInStorage(key: string, value: string): void {}
|