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.
10 lines
151 B
TypeScript
10 lines
151 B
TypeScript
declare module '*.svg' {
|
|
const content: string;
|
|
export default content;
|
|
}
|
|
|
|
declare module '*.json' {
|
|
const value: any;
|
|
export default value;
|
|
}
|