export interface ColumnProps {
id: number
title: string
avatar?: string
description: string
}
export interface PostProps {
id: number
title: string
content: string
image?: string
createdAt: string
columnId: number
}
export { ColumnProps, PostProps } from ‘./testData’
报错
WARNING Compiled with 2 warnings 1:57:11 PM
warning in ./src/store.ts
"export ‘ColumnProps’ was not found in ‘./testData’
warning in ./src/store.ts
"export ‘PostProps’ was not found in ‘./testData’