Files
maher 703f50a09d
Some checks failed
Build / run (push) Has been cancelled
first commit
2025-10-29 11:42:25 +01:00

9 lines
230 B
TypeScript
Executable File

import {MetaTag} from '@common/seo/meta-tag';
export interface BackendResponse {
status?: string;
seo?: MetaTag[];
// whether seo tags were already set with initial response from server for this data
set_seo?: boolean;
}