mirror of
https://github.com/roleypoly/roleypoly-v1.git
synced 2025-04-25 12:19:10 +00:00
13 lines
269 B
TypeScript
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
|
|
}
|