Files
frontend-app-authoring/src/custom.d.ts
Rômulo Penido e24fb7889e feat: redirect to unit page if the hit or its parent is a unit (#957)
This change adds the feature to redirect from a search result to a Unit, in case the hit parent is a Unit, or the hit is a unit itself.
2024-04-29 19:50:12 +05:30

10 lines
151 B
TypeScript

declare module '*.svg' {
const content: string;
export default content;
}
declare module '*.json' {
const value: any;
export default value;
}