8 lines
224 B
TypeScript
8 lines
224 B
TypeScript
|
export interface IWebsiteMetadata {
|
||
|
description: string;
|
||
|
url: string;
|
||
|
icons: string[];
|
||
|
name: string;
|
||
|
}
|
||
|
export declare function getWindowMetadata(): IWebsiteMetadata | null;
|
||
|
//# sourceMappingURL=index.d.ts.map
|