mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2025-05-14 06:43:05 +02:00
8 lines
161 B
TypeScript
8 lines
161 B
TypeScript
export const setTitle = function (title: string) {
|
|
window.document.title = title;
|
|
};
|
|
|
|
export const getTitle = function () {
|
|
return window.document.title;
|
|
};
|