v1/packages/roleypoly-ui/mappings.d.ts

13 lines
269 B
TypeScript

declare module '@roleypoly/ui/mappings' {
export type Mappings = {
[newPath: string]: {
path: string,
custom?: (router: { get: (ctx: any) => void }) => void,
noAutoFix?: boolean
}
}
const mappings: Mappings
export default mappings
}