fullstrapp
Version:
Bootstrap a scalable full stack application with pre-configured: hosting, database, authentication, analytics, CI, CD, code templates, and issue templates.
15 lines (12 loc) • 347 B
TypeScript
/// <reference types="react-scripts" />
interface Navigator {
// navigator.share method
// https://developer.mozilla.org/en-US/docs/Web/API/Navigator/share
share?(options: { url: string; text: string; title: string }): Promise<void>
}
// Google Analytics gtag library
declare namespace NodeJS {
interface Global {
gtag(): void
}
}