mirror of
https://github.com/Mastermindzh/tidal-hifi.git
synced 2024-10-30 01:49:03 +01: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;
|
||
|
};
|