Skip to content

Commit 6d891c1

Browse files
committed
Fix(developers): Removed unnecessary export statements
1 parent 4c09c45 commit 6d891c1

File tree

4 files changed

+7
-11
lines changed

4 files changed

+7
-11
lines changed

src/pages/developers/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ const StyledCallout = styled(Callout)`
198198
}
199199
`
200200

201-
export interface IDevelopersPath {
201+
interface IDevelopersPath {
202202
emoji: string
203203
title: JSX.Element
204204
description: JSX.Element

src/pages/developers/learning-tools.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ const StyledCardGrid = styled(CardGrid)`
7878
margin-bottom: 2rem;
7979
`
8080

81-
export interface ILearningTool {
81+
interface ILearningTool {
8282
name: string
8383
description: TranslationKey
8484
url: string

src/pages/developers/local-environment.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@ const H2 = styled.h2`
272272
// },
273273
// ]
274274

275-
export interface IFramework {
275+
interface IFramework {
276276
id: string
277277
url: string
278278
githubUrl: string

src/pages/developers/tutorials.tsx

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
import React, { DetailedHTMLProps, HTMLAttributes, useState } from "react"
2-
import styled, {
3-
DefaultTheme,
4-
ThemedStyledFunction,
5-
ThemedStyledProps,
6-
} from "styled-components"
2+
import styled from "styled-components"
73
import { graphql, PageProps } from "gatsby"
84
import { IntlShape, useIntl } from "gatsby-plugin-intl"
95

@@ -219,7 +215,7 @@ const published = (locale: string, published: string) => {
219215
) : null
220216
}
221217

222-
export interface IForeignTutorial {
218+
interface IForeignTutorial {
223219
url: string
224220
title: string
225221
description: string
@@ -232,7 +228,7 @@ export interface IForeignTutorial {
232228
publishDate: string
233229
}
234230

235-
export interface ITutorial {
231+
interface ITutorial {
236232
to?: string | null
237233
title?: string | null
238234
description?: string | null
@@ -245,7 +241,7 @@ export interface ITutorial {
245241
isExternal?: boolean | null
246242
}
247243

248-
export interface ITutorialsState {
244+
interface ITutorialsState {
249245
activeTagNames: Array<string>
250246
filteredTutorials: Array<ITutorial>
251247
}

0 commit comments

Comments
 (0)