Skip to content

Commit aff5f09

Browse files
committed
fix: change page props type to any
1 parent e734563 commit aff5f09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/core/src/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ export type Method = 'get' | 'post' | 'put' | 'patch' | 'delete'
100100
export type RequestPayload = Record<string, FormDataConvertible> | FormData
101101

102102
export interface PageProps {
103-
[key: string]: unknown
103+
[key: string]: any
104104
}
105105

106106
export interface Page<SharedProps extends PageProps = PageProps> {

0 commit comments

Comments
 (0)