10 lines
203 B
TypeScript
10 lines
203 B
TypeScript
|
|
export type Props = {
|
|
params: Promise<{ slug: string }>;
|
|
searchParams: Promise<{ [key: string]: string | string[] | undefined }>;
|
|
};
|
|
|
|
export type TagProps = {
|
|
params: Promise<{ tag: string }>;
|
|
};
|