chore: add deprecation notice to netlify large media docs (#948)

This commit is contained in:
Daniel Lautzenheiser
2023-10-23 16:19:43 -04:00
committed by GitHub
parent c1ccc150fd
commit f6c5110603
8 changed files with 57 additions and 5 deletions

View File

@ -76,6 +76,7 @@ export interface DocsData {
readonly weight: number;
readonly slug: string;
readonly beta?: boolean;
readonly deprecated?: boolean;
}
export interface DocsPageHeading {
@ -95,6 +96,7 @@ export interface DocsGroupLink {
readonly title: string;
readonly slug: string;
readonly beta: boolean;
readonly deprecated: boolean;
}
export interface DocsGroup {
@ -133,6 +135,7 @@ export interface MenuLink {
readonly title: string;
readonly url: string;
readonly beta?: boolean;
readonly deprecated?: boolean;
}
export interface MenuLinkSubGroup {