17 lines
334 B
Markdown
17 lines
334 B
Markdown
|
# window-metadata [](https://badge.fury.io/js/window-metadata)
|
||
|
|
||
|
Scrape Window Metadata
|
||
|
|
||
|
## API
|
||
|
|
||
|
```typescript
|
||
|
interface IWebsiteMetadata {
|
||
|
description: string;
|
||
|
url: string;
|
||
|
icons: string[];
|
||
|
name: string;
|
||
|
}
|
||
|
|
||
|
function getWindowMetadata(): IWebsiteMetadata | null;
|
||
|
```
|