This module contains the TypeScript definitions for the Times Public API's GraphQL types. The names of the types match the names in the GraphQL API.
import { Article } from "@thetimes/times-public-api-types";
interface TPAClient {
getArticle(articleId: string): Promise<Article>;
}
You may need to import at least 1 type manually from this package to your project before the auto-import suggestions start working.