Initial commit
This commit is contained in:
commit
78f8d225ee
21173 changed files with 2907774 additions and 0 deletions
16
node_modules/next/dist/lib/metadata/generate/meta.d.ts
generated
vendored
Normal file
16
node_modules/next/dist/lib/metadata/generate/meta.d.ts
generated
vendored
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
import React from 'react';
|
||||
export declare function Meta({ name, property, content, media, }: {
|
||||
name?: string;
|
||||
property?: string;
|
||||
media?: string;
|
||||
content: string | number | URL | null | undefined;
|
||||
}): React.ReactElement | null;
|
||||
export declare function MetaFilter<T extends {} | {}[]>(items: (T | null)[]): NonNullable<T>[];
|
||||
type ExtendMetaContent = Record<string, undefined | string | URL | number | boolean | null | undefined>;
|
||||
type MultiMetaContent = (ExtendMetaContent | string | URL | number)[] | null | undefined;
|
||||
export declare function MultiMeta({ propertyPrefix, namePrefix, contents, }: {
|
||||
propertyPrefix?: string;
|
||||
namePrefix?: string;
|
||||
contents?: MultiMetaContent | null;
|
||||
}): NonNullable<React.ReactElement<unknown, string | React.JSXElementConstructor<any>> | React.ReactElement<unknown, string | React.JSXElementConstructor<any>>[]>[] | null;
|
||||
export {};
|
||||
Loading…
Add table
Add a link
Reference in a new issue