10 lines
456 B
TypeScript
10 lines
456 B
TypeScript
import type { NonLocalized } from "../../internals/NonLocalizedT";
|
|
import type { AmazonPAConfig } from "../components/AmazonPAConfig";
|
|
import type { GoogleAdSense } from "../components/GoogleAdSense";
|
|
import type { GoogleAnalytics } from "../components/GoogleAnalytics";
|
|
|
|
export interface SiteConfig {
|
|
amazonPAAPIConfig: NonLocalized<AmazonPAConfig>,
|
|
googleAdSense: NonLocalized<GoogleAdSense>,
|
|
googleAnalytics: NonLocalized<GoogleAnalytics>,
|
|
} |