@gouvfr-anct/cartographie-nationale
Version:
<h2 id="about">🪧 À propos</h2>
20 lines (19 loc) • 433 B
TypeScript
import { FC } from 'react';
type AppProps = {
apiUrl?: string;
siteUrl?: string;
logoUrl?: string;
appName?: string;
helpUrl?: string;
helpLabel?: string;
latitude?: number;
longitude?: number;
zoom?: number;
territoireType?: string;
territoires?: string;
routeInitiale?: string;
matomoUrl?: string;
matomoSiteId?: string;
};
export declare const App: FC<AppProps>;
export {};