6 lines
140 B
TypeScript
6 lines
140 B
TypeScript
type Params = {
|
|
page_url?: string | string[];
|
|
};
|
|
export default function rewritePagesModule(params?: Params): Promise<void>;
|
|
export {};
|