6 lines
133 B
TypeScript
6 lines
133 B
TypeScript
export function readCookie(name: string): string {
|
|
return "";
|
|
}
|
|
|
|
export function writeCookie(name: string, value: string): void {}
|